Files
30-seconds-of-code/snippets/or.md
2022-02-13 18:55:21 +02:00

22 lines
385 B
Markdown

---
title: Logical or
tags: math,logic,beginner
unlisted: true
firstSeen: 2020-05-13T11:35:41+03:00
lastUpdated: 2021-01-04T13:04:15+02:00
---
Checks if at least one of the arguments is `true`.
- Use the logical or (`||`) operator on the two given values.
```js
const or = (a, b) => a || b;
```
```js
or(true, true); // true
or(true, false); // true
or(false, false); // false
```