js some array
['one', 'two'].some(item => item === 'one') // true
['one', 'two'].some(item => item === 'three') // falseconst age= [2,7,12,17,21];
age.some(function(person){
return person > 18;}); //true
//es6
const age= [2,7,12,17,21];
age.some((person)=> person>18); //truemovies.some(movie => movie.year > 2015)
// Say true if in movie.year only one (or more) items are greater than 2015
// Say false if no items have the requirement (like and operator)let array = [1, 2, 3, 4, 5];
//Is any element even?
array.some(function(x) {
return x % 2 == 0;
}); // true
Also in JavaScript:
- random color generator javascript
- If 'router-outlet' is an Angular component, then verify that it is part of this module.
- remove non alphanumeric characters javascript
- javascript copy array
- javascript array flatten
- javascript pass function as parameter
- check if time is greater than javascript
- how to program an array in js
- reactjs start
- moment js date between two dates
- how to run cypress test
- useRef
- p5js check for keyboard keys
- jquery remove readonly
- vue test utils mapgetter
- for each python json
- js filter items by index
- minimum number of swaps to sort an array javascript
- javascript on input change
- selection sort javascript
- javascript download current html page
- javascript get last element of array
- loopback order by limit
- react native onChangeText resize the background image