TypeScript Inference (型推論) - TypeScriptJan 21, 2021let color = 'red'; // 変数の宣言と代入を1行で行うと型推論できる let fruit; // 2行に分かれると型推論できない fruit = 'apple'