“Массив фильтров в JS” Ответ

Фильтруя массив JavaScript

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

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

console.log(result);
White Browed Owl

.filter JS

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"]
Difficult Dolphin

JavaScript Filter

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

const threeLetterWords = words.filter(word => word.length <= 5)

console.log(threeLetterWords);

// RESULT: (3) ["spray", "limit", "elite"]
Jack Stevens

JavaScript Array Filter

var numbers = [1, 3, 6, 8, 11];

var lucky = numbers.filter(function(number) {
  return number > 7;
});

// [ 8, 11 ]
Two Toed Tree Sloth

Фильтр javascript

const arr = [1, 2, 3, 4, 5, 6, 7, 8, 9];

const filter = arr.filter((number) => number > 5);
console.log(filter); // [6, 7, 8, 9]

or 

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"]
Aggressive Albatross

Array.filter

// filter(): returns a new array with all elements that pass the test
// If no elements pass the test, an empty array will be returned.

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"]
Inquisitive Iguana

Ответы похожие на “Массив фильтров в JS”

Вопросы похожие на “Массив фильтров в JS”

Больше похожих ответов на “Массив фильтров в JS” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования