Files
30-seconds-of-code/snippets/and.md
2020-09-15 21:52:00 +03:00

19 lines
306 B
Markdown

---
title: and
tags: math,logic,beginner
---
Returns `true` if both arguments are `true`, `false` otherwise.
- 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
```