Cómo presionar solo valores únicos en la matriz en JavaScript

if(this.items.indexOf(item) === -1) {
    this.items.push(item);
    console.log(this.items);
}
Nice Narwhal