“JavaScript Znajdź unikalne wartości w tablicy” Kod odpowiedzi

Unikalne wartości tablicy JavaScript

var arr = [55, 44, 65,1,2,3,3,34,5];
var unique = [...new Set(arr)]

//just  var unique = new Set(arr) wont be an array
Batman

Jak znaleźć unikalne elementy w tablicy w JavaScript

let a = ["1", "1", "2", "3", "3", "1"];
let unique = a.filter((item, i, ar) => ar.indexOf(item) === i);
console.log(unique);
Funny Finch

JavaScript Znajdź unikalne wartości w tablicy

// usage example:
var myArray = ['a', 1, 'a', 2, '1'];
var unique = myArray.filter((v, i, a) => a.indexOf(v) === i); 

// unique is ['a', 1, 2, '1']
CodeBaron

tablica unikalna wartości JavaScript

const myArray = ['a', 1, 'a', 2, '1'];
const unique = [...new Set(myArray)]; // ['a', 1, 2, '1']
PandaNïrio

JavaScript Uzyskaj wyraźne wartości z tablicy

const categories = ['General', 'Exotic', 'Extreme', 'Extreme', 'General' ,'Water', 'Extreme']
.filter((value, index, categoryArray) => categoryArray.indexOf(value) === index);

This will return an array that has the unique category names
['General', 'Exotic', 'Extreme', 'Water']

McBurd

Unikalne wartości w tablicy JavaScript

let uniqueItems = [...new Set(items)]
Smoggy Seal

Odpowiedzi podobne do “JavaScript Znajdź unikalne wartości w tablicy”

Pytania podobne do “JavaScript Znajdź unikalne wartości w tablicy”

Więcej pokrewnych odpowiedzi na “JavaScript Znajdź unikalne wartości w tablicy” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu