unique array javascript es6 Map
//ES6
let array = [
{ "name": "Joe", "age": 17 },
{ "name": "Bob", "age": 17 },
{ "name": "Carl", "age": 35 }
];
array.map(item => item.age)
.filter((value, index, self) => self.indexOf(value) === index)
> [17, 35]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']
const data = [
{ group: 'A', name: 'SD' },
{ group: 'B', name: 'FI' },
{ group: 'A', name: 'MM' },
{ group: 'B', name: 'CO'}
];
const unique = [...new Set(data.map(item => item.group))]; // [ 'A', 'B']
Also in JavaScript:
- javascript format date yyyy-mm-dd hh:mm:ss to dd-mm-yyyy hh:mm am/pm
- emit resize event in angular
- setting property to method in child class javascript
- js filter items by index
- react scrolling a div by dragging the mouse?
- keydown shift tab angular
- download audio file javascript
- javascript extract number from string
- usestate access previous state
- javascript when button clicked different text appears
- multilone input react
- typeof javascript
- kill all node process ubunut
- li dots
- php generate random string fixed length
- how pass data from body in koa js
- react native passing params to nested navigators
- javascript detect browser type
- javascript reverse a string
- Can't find Node.js binary "node": path does not exist. Make sure Node.js is installed and in your PATH, or set the "runtimeExecutable" in your launch.json
- ... operator javascript
- show password eye icon angular 9
- sweetalert2 js
- javascript get current url