TypeScript Mapの要素数を取得するサンプル
環境
Windows 11 Pro 64bit
TypeScript 4.4.4
構文
const count = マップ変数名.size;
Map(マップ)の長さを取得するには、sizeプロパティを使います。
使用例
const tt: Map<string, number> = new Map(); tt.set("tokyo", 11) tt.set("oosaka", 22) tt.set("fukushima", 33) const count = tt.size; console.log(count)
実行結果
[LOG]: 3