javascript find first element in array with code example
Example 1: js find element in array by property
var result = jsObjects.find(obj => {
return obj.b === 6
})
Example 2: javascript get first element of array
let array = [1,2,3] // makes your array
array[0] // returns first element of your array.
Example 3: js get first item from array
var colors = ["red", "green", "blue"];
var red=colors.shift();
//colors is now ["green","blue"];