最簡單的方法:
const uniq = [...new Set(array)];
本文參考這一篇文章
https://stackoverflow.com/questions/9229645/remove-duplicate-values-from-js-array
最簡單的方法:
const uniq = [...new Set(array)];
本文參考這一篇文章
https://stackoverflow.com/questions/9229645/remove-duplicate-values-from-js-array