Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

find element in array javascript

const simpleArray = [3, 5, 7, 15];
const objectArray = [{ name: 'John' }, { name: 'Emma' }]

console.log( simpleArray.find(e => e === 7) )
// expected output 7

console.log( simpleArray.find(e => e === 10) )
// expected output undefined

console.log( objectArray.find(e => e.name === 'John') )
// expected output { name: 'John' }
Comment

find in array function

const persons = [
  {name:"Shirshak",gender:"male"},
  {name:"Amelia",gender:"female"},
  {name:"Amand",gender:"male"}
]
//filter return all objects in array
let male = persons.filter(function(person){
return person.gender==='male'
})
console.log(male) //[{name:"Shirshak",gender:"male"},{name:"Amand",gender:"male"}]

//find return first object that match condition
let female = persons.find(function(person){
return person.gender==='female'
})
Comment

js find in array

const inventory = [
  {id: 23, quantity: 2},
  {id: '24', quantity: 0},
  {id: 25, quantity: 5}
];
// Check type and value using ===
const result = inventory.find( ({ id }) => id === 23 );
// Check only value using ==
const result = inventory.find( ({ id }) => id == 24 );
Comment

js to find value in array

console.log( simpleArray.find(e => e === 7) )
Comment

search an element in an array

  public static void main(String[] args) {

        int[] xr = {1, 2, 3, 4, 5};
        int key = 3;
        for (int i = 0; i < xr.length ; i++) {
            if (key==xr[i]){
                System.out.println("element is: "+i);
            }
        }
    }
Comment

search in array javascript

// easyui

function cekNilai9box(value,row){
    var getData = row.compare_nilai9box;
    var assesment = getData.split(',');
    var cek = assesment.find(e => e == row.nilai9box_value_ori);
    
    if(cek == undefined){
        return '<span style="color:red;">'+ value +'</span>';
    }else{
        return value;
    }
}
Comment

PREVIOUS NEXT
Code Example
Javascript :: find index in array javascript 
Javascript :: angular library run tests 
Javascript :: how to capture a thumbnail from a video 
Javascript :: javascript fire keypress event 
Javascript :: javascript anagram 
Javascript :: js capitalize first letter of each word 
Javascript :: is checked checkbox jquery 
Javascript :: concat js mdn 
Javascript :: ajax get method in jquery 
Javascript :: difference between find and filter javascript 
Javascript :: wait for element to load javascript 
Javascript :: express param in url 
Javascript :: webpack config minify 
Javascript :: how find empty object in js 
Javascript :: draw on canvas from video element js 
Javascript :: number is prime or not in javascript 
Javascript :: byte to mb js 
Javascript :: how to get the computer date and time jquery 
Javascript :: using .env in cra 
Javascript :: how to count specific letters in string js 
Javascript :: how to use uniqid 
Javascript :: javascript random number up to including 2 
Javascript :: js check if array of dictionaries contain 
Javascript :: get element by id jqueryt 
Javascript :: javascript set class on div 
Javascript :: run onclick function once javascript 
Javascript :: ts node cannot use import statement outside a module 
Javascript :: javascript fibonacci example 
Javascript :: formgroup is not property of form angular 
Javascript :: how to get all the voice channels in discord js 
ADD CONTENT
Topic
Content
Source link
Name
2+9 =