A very easy way is to turn the Set into an Array first: let a = new Set(); a.add('Hello'); a = Array.from(a); ...and then just use a simple ...
確定! 回上一頁