Answers for "filtering arrays javascript"

126

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
5

js array .filter

// The filter() method creates a new array with all elements 
// that pass the test implemented

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

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

console.log(result);
// expected output: Array ["exuberant", "destruction", "present"]
Posted by: Guest on February-07-2021
2

filter array js

const arr = ['pine', 'apple', 'pineapple', 'ball', 'roll'];
const longWords = arr.filter(item => item.length > 5);

console.log(longWords);   // ['pineapple']
Posted by: Guest on May-31-2021
0

filtering in javascript

//filter numbers divisible by 2 or any other digit using modulo operator; %
  
  const figures = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
  const divisibleByTwo = figures.filter((num) => {
    return num % 2 === 0;
  });
  console.log(divisibleByTwo);
Posted by: Guest on September-15-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language