ทำ Javascript array unique


** Updated for ES6/ES2015:

ตัวอย่างการ Array

let items = [a,a,b,b,c,d]

การใช้งาน

let items = [a,a,b,b,c,d]
let uniqueItems = Array.from(new Set(items))
console.log(uniqueItems)

ผลลัพธ์

/// [a,b,c,d]

** สามารถ ใช้เป็น **. Spread syntax

var uniqueItems = [...new Set(items)]