Files
freeCodeCamp/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/finding-a-remainder-in-javascript.md
Rudi Colombi b4cb4bf947 fix(curriculum): replace blockquotes with pre blocks (#49384)
* fix: replace blockquotes with code blocks

* fix: replace code blocks with pre elements as suggested

Co-authored-by: Krzysztof G. <60067306+gikf@users.noreply.github.com>

---------

Co-authored-by: Krzysztof G. <60067306+gikf@users.noreply.github.com>
2023-02-18 10:39:54 -08:00

1.4 KiB

id, title, challengeType, videoUrl, forumTopicId, dashedName
id title challengeType videoUrl forumTopicId dashedName
56533eb9ac21ba0edf2244ae Finding a Remainder in JavaScript 1 https://scrimba.com/c/cWP24Ub 18184 finding-a-remainder-in-javascript

--description--

The remainder operator % gives the remainder of the division of two numbers.

Example

5 % 2 = 1
5 / 2 = 2 remainder 1
2 * 2 = 4
5 - 4 = 1

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. Even numbers have a remainder of 0, while odd numbers a remainder of 1.

17 % 2 = 1
48 % 2 = 0

Note: The remainder 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--

Set remainder equal to the remainder of 11 divided by 3 using the remainder (%) operator.

--hints--

The variable remainder should be initialized

assert(/(const|let|var)\s+?remainder/.test(code));

The value of remainder should be 2

assert(remainder === 2);

You should use the % operator

assert(/\s+?remainder\s*?=\s*?.*%.*;?/.test(code));

--seed--

--after-user-code--

(function (y) {
  return 'remainder = ' + y;
})(remainder);

--seed-contents--

const remainder = 0;

--solutions--

const remainder = 11 % 3;