“для” Ответ

Как использовать для JavaScript

const array1 = ['a', 'b', 'c'];

for (const element of array1) {
  console.log(element);
}
Dark Dunlin

Используйте их вместо цикла JavaScript

const array = [1, 2, 3];array.forEach(function(elem, index, array) {    array[index] = elem * 2;});console.log(array); // [2,4,6]
Brainy Butterfly

для

const iterable = new Set([1, 1, 2, 2, 3, 3]);

for (const value of iterable) {
  console.log(value);
}
// 1
// 2
// 3
Tender Tamarin

для JS

for (variable of iterable) {
  statement
}
Homely Heroin

Используйте их вместо цикла JavaScript

const array = [1,2,3,4,5];const evenNumbers = array.filter(function(elem) {   // expressions that return 'true' are retained   return elem % 2 == 0;});
Brainy Butterfly

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

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