javascript JavaScript Truthy和Falsy声明

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript JavaScript Truthy和Falsy声明相关的知识,希望对你有一定的参考价值。

// Short-circuit evaluation
let tool = 'marker';

// Use short circuit evaluation to assign  writingUtensil variable below:
let writingUtensil = tool || 'pen'
// If tool = '', the following line will print 'pen' ('' counts as Truthy)
console.log(`The ${writingUtensil} is mightier than the sword.`);

以上是关于javascript JavaScript Truthy和Falsy声明的主要内容,如果未能解决你的问题,请参考以下文章

在javascript中检查年份是不是是闰年[重复]

JavaScript:while循环中的异步方法

javascript数据类型和类型转换

JavaScript判断数组是否有重复值

JavaScript高级手写apply()call()bind()

JavaScript高级手写apply()call()bind()