Answers for "array filter js w3hschool"

107

filter javascript array

var words = ['spray', 'limit', 'elite', 'exuberant', 'destruction', 'present'];

const result = words.filter(word => word.length > 6);

console.log(result);
Posted by: Guest on November-11-2019
2

javascript filter

const myNum = [2,3,4,5,6,7,8,9,10];
//using filter gives us a new array
const divisibleBy3 = myNum.filter(eachNum => eachNum%3==0); 
console.log(divisibleBy3); //output:[3,6,9]
Posted by: Guest on July-14-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language