首页 > web前端 > js教程 > 正文

JavaScript:forEach、map、箭头函数、setTimeout、setInterval、filter、some、every 和 reduce

WBOY
发布: 2024-08-08 06:47:11
原创
339 人浏览过

JavaScript: forEach, map, Arrow Functions, setTimeout, setInterval, filter, some, every, and reduce

forEach方法

forEach 用于迭代数组。这是一个简单的例子:

const numbers = [1, 2, 3, 4, 5, 6, 7];

numbers.forEach(function (el) {
  if (el % 2 === 0) {
    console.log(el);
  }
});
登录后复制

现在让我们将 forEach 与对象数组一起使用:

const movies = [
  {
    title: 'Indiana Jones',
    score: 77,
  },
  {
    title: 'Star Trek',
    score: 94,
  },
  {
    title: 'Deadpool',
    score: 79,
  },
];

movies.forEach(function (movie) {
  console.log(`${movie.title} - ${movie.score}/100`);
});
登录后复制

地图

Map 使用对数组中每个元素调用回调的结果创建一个新数组。

首先,让我们迭代一个基本数组:

const lCase = ['jim', 'bob', 'abby'];
const uCase = lCase.map(function (t) {
  return t.toUpperCase();
});

console.log(lCase, uCase);
登录后复制

现在,让我们迭代对象数组:

const movies = [
  {
    title: 'Indiana Jones',
    score: 77,
  },
  {
    title: 'Star Trek',
    score: 94,
  },
  {
    title: 'Deadpool',
    score: 79,
  },
];

const titles = movies.map(function (movie) {
  return movie.title;
});
console.log(titles);
登录后复制

箭头功能

我们可以编写如下箭头函数来简化语法:

const square = (x) => {
  return x * x;
};

const sum = (x, y) => {
  return x + y;
};

const rollDie = () => {
  return Math.floor(Math.random() * 6) + 1;
};

console.log(square(2), sum(2, 3));
console.log(rollDie());
登录后复制

我们还可以重新访问电影示例并使用箭头函数:

const movies = [
  {
    title: 'Indiana Jones',
    score: 77,
  },
  {
    title: 'Star Trek',
    score: 94,
  },
  {
    title: 'Deadpool',
    score: 79,
  },
];

const newMovies = movies.map((movie) => {
  return `${movie.title} = ${movie.score} / 10`;
});
登录后复制

隐式回报

隐式返回是编写函数的另一种简写方式,一些示例包括:

const rollDie = () => Math.floor(Math.random() * 6) + 1;
const isEven = (num) => num % 2 === 0;
登录后复制

设置超时

x 毫秒后运行回调

console.log('Apears 1st');
// takes callback, then milliseconds
setTimeout(() => {
  console.log('Apears 3rd');
}, 3000);

console.log('Apears 2nd');
登录后复制

设置间隔

每 x 毫秒重复一次回调

setInterval(() => {
  console.log(Math.random());
}, 2000);
登录后复制

如果我们想让回调最终停止,我们可以这样做:

const id = setInterval(() => {
  console.log(Math.random());
}, 2000);

clearInterval(id); // stops the loop
登录后复制

过滤方式

Filter 创建一个新数组,其中包含在回调函数中返回 true 的元素

const nums = [9, 8, 7, 6, 5, 4, 3, 2, 1];
const odds = nums.filter((n) => {
  return n % 2 === 1; // our callback returns true or false
  // if it returns true, n is added to the filtered array
});
// [9, 7, 5, 3, 1]

const smallNums = nums.filter((n) => n < 5); // [4, 3, 2, 1]
登录后复制

我们还可以过滤数组中的对象:

const movies = [
  {
    title: 'Indiana Jones',
    score: 77,
  },
  {
    title: 'Star Trek',
    score: 94,
  },
  {
    title: 'Deadpool',
    score: 79,
  },
];

const badMovies = movies.filter((movie) => {
  return movie.score < 80;
});

console.log(badMovies);
登录后复制

一些和每一个

  • Some - 测试数组中的任何元素是否在回调函数中返回 true。它返回一个布尔值
const firstWords = ['dog', 'jello', 'log', 'bag', 'wag', 'cupcake'];

words.some((word) => {
  return word.length > 4;
}); // true

words.some((word) => word[0] === 'Z'); // false
words.some((word) => word.includes('cake')); // true
登录后复制
  • Every - 测试数组中的所有元素是否在回调函数中返回 true。它返回一个布尔值
const words = ['dog', 'dig', 'log', 'bag', 'wag'];

words.every((word) => {
  return word.length === 3;
}); // true

words.every((word) => word[0] === 'd'); // false

words.every((w) => {
  return w[w.length - 1] === 'g';
}); // true
登录后复制

减少

  • reduce 回调函数中的第一个(也是可能的唯一)参数。
    • 该函数的第一个参数是一个值,当我们迭代每个项目时,该值可能会发生变化。
    • 此函数中的第二个参数是数组索引中的值。
  • reduce 的可选第二个参数是我们希望回调函数的第一个值开始的值。
const prices = [9.99, 1.5, 19.99, 49.99, 30.5];

const total = prices.reduce((total, price) => {
  return total + price;
});

const min = prices.reduce((min, price) => {
  return Math.min(min, price);
});

console.log(min);
登录后复制

我们也可以使用对象数组来做到这一点:

const movies = [
  {
    title: 'Indiana Jones',
    score: 77,
  },
  {
    title: 'Star Trek',
    score: 94,
  },
  {
    title: 'Deadpool',
    score: 79,
  },
];

let bestMovie = movies.reduce((best, movie) => {
  if (movie.score > best.score) {
    return movie;
  }
  return best;
});

console.log(bestMovie);
登录后复制

我们还可以设置reducer的初始值:

let nums = [1, 2, 3, 4, 5];

let maxPlus100 = nums.reduce((max, num) => {
  return (max += num);
}, 100);

console.log(maxPlus100); // 115
登录后复制

以上是JavaScript:forEach、map、箭头函数、setTimeout、setInterval、filter、some、every 和 reduce的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:dev.to
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!