Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

js some array

const 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); //true
Comment

js some

// Use method "some" to loop through array elements and see if there are any matching ones
const array = [{ name: 'Dharmesh', gender: 'male' }, { name: 'Priti', gender: 'female' }];
const hasFemaleContender = array.some(({ gender }) => gender === 'female');
console.log(hasFemaleContender);
Comment

js array.some

// an array
const array = [ 1, 2, 3, 4, 5 ];

// check if any of the elements are less than three (the first two are)
array.some(function(element) {
	return element < 3;
}); // -> true
// ES6 equivalents
array.some((element) => {
	return element < 3
}); // -> true
array.some((element) => element < 3); // -> true
Comment

javascript some method

It just checks the array,
for the condition you gave,
if atleast one element in the array passes the condition
then it returns true
else it returns false
Comment

javascript array some

let array = [1, 2, 3, 4, 5];

//Is any element even?
array.some(function(x) {
  return x % 2 == 0;
}); // true
Comment

javascript some

const fruits = ['apple', 'banana', 'mango', 'guava'];

function checkAvailability(arr, val) {
  return arr.some(function(arrVal) {
    return val === arrVal;
  });
}

checkAvailability(fruits, 'kela');   // false
checkAvailability(fruits, 'banana'); // true
Comment

js some

movies.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)
Comment

array.some()

<script>
  
// JavaScript code for some() function 
function isodd(element, index, array) {  
    return (element % 2 == 1);  
} 
    
function geeks() { 
    var arr = [ 6, 1, 8, 32, 35 ]; 
      
    // check for odd number 
    var value = arr.some(isodd); 
    console.log(value); 
} 
geeks(); 
</script>
Comment

javascript array some

var nums = [1, 2, 3, 4, 5, 6, 7];

function even(ele)
{
    return ele%2 == 0;
    
}
console.log(nums.some(even))
/*consol.log will show true because at least one of the elements is even*/
Comment

Javascript array some

function isBiggerThan10(element, index, array) {
  return element > 10;
}

[2, 5, 8, 1, 4].some(isBiggerThan10);  // false
[12, 5, 8, 1, 4].some(isBiggerThan10); // true
Comment

JavaScript Array some()

const numbers = [45, 4, 9, 16, 25];
let someOver18 = numbers.some(myFunction);

function myFunction(value, index, array) {
  return value > 18;
}
Comment

array.prototype.some( )

function checkPositive(arr) {
  return arr.some(elem => elem > 0);
}
checkPositive([1, 2, 3, -4, 5]);
Comment

some of array js

function sum(numbers) {
  return numbers.reduce((a, b) => a + b, 0);
}
Comment

PREVIOUS NEXT
Code Example
Javascript :: ejs render 
Javascript :: ajax loader 
Javascript :: findoneandupdate mongoose 
Javascript :: Javascript number Count up 
Javascript :: find items in array not in another array javascript 
Javascript :: Factorial Recursion Function in Javascript 
Javascript :: export excel form angular array to excel 
Javascript :: emitting event on socket.io using async await 
Javascript :: function that search a biggest value in array javascript 
Javascript :: parsing json object in java 
Javascript :: component will unmount 
Javascript :: how to find missing number in integer array of 1 to 100 in javascript 
Javascript :: jquery add css important 
Javascript :: how can you set an environment variable in node 
Javascript :: array flatten 
Javascript :: react white screen 
Javascript :: create a style in div jsx 
Javascript :: export aab bundle react native android 
Javascript :: how to handle errors with xmlhttprequest 
Javascript :: headers with fetch 
Javascript :: react route props 
Javascript :: Slice and Splice -Javascript 
Javascript :: GET method firebase realtime database react 
Javascript :: json to csv javascript 
Javascript :: javascript timestamp 
Javascript :: start date time picker from day to year in html 
Javascript :: javascript console.log() method in browser 
Javascript :: flatMap() method 
Javascript :: js string to arraybuffer 
Javascript :: useRoutes 
ADD CONTENT
Topic
Content
Source link
Name
7+9 =