Update the snippet description (odd or even number)

This commit is contained in:
Adrian Klimek
2017-12-12 23:11:03 +01:00
committed by GitHub
parent 8ff6d9bff1
commit 393b1a6a59

View File

@ -1,6 +1,6 @@
### 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