Skip to content

Latest commit

 

History

History
35 lines (22 loc) · 939 Bytes

and.md

File metadata and controls

35 lines (22 loc) · 939 Bytes
标题 标签
and(检查两个参数是否都为真) math,logic,beginner(数学,逻辑,初学者)

检查两个参数是否都为真。

  • 使用逻辑且操作符&&在给予的两个值之间进行判断。

代码如下:

const and = (a, b) => a && b;

ts代码如下:

调用方式:

and(true, true); // true
and(true, false); // false
and(false, false); // false

应用场景

以下是一个实战示例:

结果如下:

<iframe src="codes/javascript/html/and.html"></iframe>