Files
30-seconds-of-code/snippets/randomBoolean.md
Isabelle Viktoria Maciohsek 8bf67754ce Make expertise a field
2022-03-01 20:21:45 +02:00

20 lines
384 B
Markdown

---
title: Random boolean value
tags: math,random
expertise: beginner
firstSeen: 2021-01-20T16:20:08+02:00
lastUpdated: 2021-01-20T16:20:08+02:00
---
Generates a random boolean value.
- Use `Math.random()` to generate a random number and check if it is greater than or equal to `0.5`.
```js
const randomBoolean = () => Math.random() >= 0.5;
```
```js
randomBoolean(); // true
```