2018-09-30 23:01:58 +01:00
---
id: 56533eb9ac21ba0edf2244ae
title: Finding a Remainder in JavaScript
challengeType: 1
2019-02-14 12:24:02 -05:00
videoUrl: 'https://scrimba.com/c/cWP24Ub'
2019-07-31 11:32:23 -07:00
forumTopicId: 18184
2021-01-13 03:31:00 +01:00
dashedName: finding-a-remainder-in-javascript
2018-09-30 23:01:58 +01:00
---
2020-11-27 19:02:05 +01:00
# --description--
The < dfn > remainder</ dfn > operator `%` gives the remainder of the division of two numbers.
**Example**
2018-09-30 23:01:58 +01:00
< blockquote > 5 % 2 = 1 because< br > Math.floor(5 / 2) = 2 (Quotient)< br > 2 * 2 = 4< br > 5 - 4 = 1 (Remainder)< / blockquote >
2020-11-27 19:02:05 +01:00
**Usage**
In mathematics, a number can be checked to be even or odd by checking the remainder of the division of the number by `2` .
2018-09-30 23:01:58 +01:00
< blockquote > 17 % 2 = 1 (17 is Odd)< br > 48 % 2 = 0 (48 is Even)< / blockquote >
2020-11-27 19:02:05 +01:00
**Note**
The < dfn > remainder< / dfn > operator is sometimes incorrectly referred to as the "modulus" operator. It is very similar to modulus, but does not work properly with negative numbers.
# --instructions--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
Set `remainder` equal to the remainder of `11` divided by `3` using the < dfn > remainder</ dfn > (`%` ) operator.
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
# --hints--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
The variable `remainder` should be initialized
2018-09-30 23:01:58 +01:00
```js
2020-11-27 19:02:05 +01:00
assert(/var\s+?remainder/.test(code));
```
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
The value of `remainder` should be `2`
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert(remainder === 2);
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
You should use the `%` operator
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert(/\s+?remainder\s*?=\s*?.*%.*;?/.test(code));
```
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
# --seed--
## --after-user-code--
2018-09-30 23:01:58 +01:00
```js
2018-10-20 21:02:47 +03:00
(function(y){return 'remainder = '+y;})(remainder);
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
## --seed-contents--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
// Only change code below this line
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
var remainder;
```
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
# --solutions--
2018-09-30 23:01:58 +01:00
```js
var remainder = 11 % 3;
```