Files
30-seconds-of-code/snippets/and.md
Isabelle Viktoria Maciohsek b5952d7d14 Update snippet descriptions
2020-10-18 20:24:28 +03:00

19 lines
279 B
Markdown

---
title: and
tags: math,logic,beginner
---
Checks if both arguments are `true`.
- Use the logical and (`&&`) operator on the two given values.
```js
const and = (a, b) => a && b;
```
```js
and(true, true); // true
and(true, false); // false
and(false, false); // false
```