Build the list

This commit is contained in:
Adrian Klimek
2017-12-13 20:02:29 +01:00
parent 05d3a8b0e2
commit 3a9c322d13

View File

@ -195,7 +195,7 @@ const escapeRegExp = str => str.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
### Even or odd number
Checks whether number is odd or even using the modulo (`%`) operator.
Checks whether a number is odd or even using the modulo (`%`) operator.
Returns `true` if the number is even, `false` if the number is odd.
```js