Skip to content

输出什么?

Posted on:2021年7月3日 at 22:30
let num = 1;
const list = ["🥳", "🤠", "🥰", "🤪"];

console.log(list[(num += 1)]);

通过 += 操作符,我们对值 num 进行加 1 操作。 num 有初始值 1,因此 1 + 1 的执行结果为 2。数组 list 的第二项为 🥰,console.log(list[2]) 输出 🥰.

原文转自:https://fe.ecool.fun/topic/14437ae4-d571-4139-88ec-eb9825196c4d