30秒学会 JavaScript 片段 · 2019年11月2日

30秒学会 JavaScript 片段 – and

Returns true if both arguments are true, false otherwise.

Use the logical and (&&) operator on the two given values.

代码片段

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

使用样例

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