JavaScript Array.fromメソッドを使ってSet からの配列の生成サンプル
環境
Windows 10 home 64bit
Google Chrome 107.0.5304.122
書式
conset Setの変数名 = new Set([要素1, 要素2, …]);
Array.from(Setの変数名)
Array.fromメソッドを使ってSet からの配列の生成します。
使用例
const cft = new Set(['study', 'skill', 'become', 'smart']); console.log(Array.from(cft));
実行結果
> Array [“study", “skill", “become", “smart"]