Koru UX Design interview question

JS program to remove duplicate string from array of strings.

Interview Answer

Anonymous

Jul 29, 2019

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

2