Files
30-seconds-of-code/js/snippets/and.md
2023-05-03 20:39:23 +03:00

368 B

title, type, tags, unlisted, cover, dateModified
title type tags unlisted cover dateModified
Logical and snippet
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