“Фильтр в Джаваскипте” Ответ

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

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

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

console.log(result);
White Browed Owl

Фильтр 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

Фильтр в Джаваскипте

const numbers = [5, 13, 7, 30, 5, 2, 19];
const bigNumbers = numbers.filter(number => number > 20);
console.log(bigNumbers);
//Output: [30]
Ariful Islam Adil(Code Lover)

Ответы похожие на “Фильтр в Джаваскипте”

Вопросы похожие на “Фильтр в Джаваскипте”

Больше похожих ответов на “Фильтр в Джаваскипте” по JavaScript

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

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