** Updated for ES6/ES2015:
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)]