Files
30-seconds-of-code/snippets/js/s/and.md
2023-05-07 16:07:29 +03:00

389 B

title, type, language, tags, unlisted, cover, dateModified
title type language tags unlisted cover dateModified
Logical and snippet javascript
math
logic
true succulent-1 2021-01-04T13:04:15+02:00

Checks if both arguments are true.

  • 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