Open2022/05/08にコメント追加2TypeScriptの学習メモTypeScriptmeshi2022/05/07に更新 TypeScriptとは JavaScript + 静的型付け https://www.typescriptlang.org/ tsconfig.json コンパイラの設定を記述したファイル https://typescriptbook.jp/reference/tsconfig/tsconfig.json-settings https://qiita.com/ryokkkke/items/390647a7c26933940470 meshi2022/05/08 型の宣言方法 const val_string: string = 'fugafuga'; const val_number: number = 100; const val_bigint: bigint = 1000n; const val_null: null = null; const val_undefined: undefined = undefined;
meshi2022/05/07に更新 TypeScriptとは JavaScript + 静的型付け https://www.typescriptlang.org/ tsconfig.json コンパイラの設定を記述したファイル https://typescriptbook.jp/reference/tsconfig/tsconfig.json-settings https://qiita.com/ryokkkke/items/390647a7c26933940470
meshi2022/05/08 型の宣言方法 const val_string: string = 'fugafuga'; const val_number: number = 100; const val_bigint: bigint = 1000n; const val_null: null = null; const val_undefined: undefined = undefined;