Files
30-seconds-of-code/snippets/and.md
Angelos Chalaris e11809d9fb Add logical and
2020-05-13 11:35:31 +03:00

304 B

title, tags
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