Skip to content

Files

Latest commit

 

History

History
18 lines (14 loc) · 306 Bytes

and.md

File metadata and controls

18 lines (14 loc) · 306 Bytes
title tags
and
math,logic,beginner

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