Skip to content

输出什么?

Posted on:2021年7月3日 at 22:28
const one = false || {} || null;
const two = null || false || "";
const three = [] || 0 || true;

console.log(one, two, three);

使用||运算符,我们可以返回第一个真值。 如果所有值都是假值,则返回最后一个值。 (false || {} || null):空对象{}是一个真值。 这是第一个(也是唯一的)真值,它将被返回。one等于{}(null || false ||“”):所有值都是假值。 这意味着返回传递的值""two等于""([] || 0 ||“”):空数组[]是一个真值。 这是第一个返回的真值。 three等于[]

原文转自:https://fe.ecool.fun/topic/a0544c68-4798-4f40-b233-bc3510170371