Pergunta de entrevista da empresa Koru UX Design

JS program to remove duplicate string from array of strings.

Resposta da entrevista

Sigiloso

29 de jul. de 2019

arr.filter (function (value, index, array) { return array.indexOf (value) == index; });

2