Skip to content

输出什么?

Posted on:2021年7月3日 at 22:24
const list = [1 + 2, 1 * 2, 1 / 2];
console.log(list);

数组元素可以包含任何值。 数字,字符串,布尔值,对象,数组,nullundeifned, 以及其他表达式,如日期,函数和计算。 元素将等于返回的值。 1 + 2返回31 * 2返回’2,'1 / 2返回0.5

原文转自:https://fe.ecool.fun/topic/37918a0a-0874-45e3-b510-4579e5941845