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