jQuery.unique on an array of strings

后端 未结 8 572
野趣味
野趣味 2020-11-29 05:16

The description of jQuery.unique() states:

Sorts an array of DOM elements, in place, with the duplicates removed. Note that this only works on arrays

8条回答
  •  情话喂你
    2020-11-29 05:46

    If not limited using jQuery, consider to use Set from ES6.

    var arr = ['foo', 'bar', 'bar'];
    Array.from(new Set(arr)); // #=> ["foo", "bar"]
    

    Working for Firefox 45, Safari 9 and Chrome 49.

提交回复
热议问题