picksecond object from an array code example
Example 1: js remove object from array by value
let originalArray = [
{name: 'John', age: 23, color: 'red'},
{name: 'Ann', age: 21, color: 'blue'},
{name: 'Mike', age: 13, color: 'green'}
];
let filteredArray = originalArray.filter(value => value.age > 18);
Example 2: javascript to array
Array.from("Hello"); // ["H", "e", "l", "l", "o"]