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