Mitomex Blog

TypeScript Inference (型推論) - TypeScript

Jan 21, 2021

let color = 'red'; // 変数の宣言と代入を1行で行うと型推論できる

let fruit;  // 2行に分かれると型推論できない
fruit = 'apple'

image01

image02

image03