技術ブログ

(技術系中心)基本自分用備忘録なので、あくまで参考程度でお願いします。

2021-07-17から1日間の記事一覧

Type Scriptの型(基本)

Type Scriptの型(基本) // 型推論の場合は型を定義しなくてもOK let hasValue = true; let count = 10; let float = 3.14; let negative = -0.12; let single = 'hello'; let double = "hello"; let back = `hello`; // 型注釈の場合は型を定義する let he…