Files
freecodecamp--freecodecamp/curriculum/challenges/english/blocks/basic-javascript/cf1111c1c11feddfaeb6bdef.md
T
wehub-resource-sync dde272c4b8
i18n - Build Validation / Validate i18n Builds (24) (push) Has been cancelled
CI - Node.js / Lint (24) (push) Has been cancelled
CI - Node.js / Build (24) (push) Has been cancelled
CI - Node.js / Test (24) (push) Has been cancelled
CI - Node.js / Test - Upcoming Changes (24) (push) Has been cancelled
CI - Node.js / Test - i18n (italian, 24) (push) Has been cancelled
CI - Node.js / Test - i18n (portuguese, 24) (push) Has been cancelled
CD - Docker - GHCR Images / Build and Push Images (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 11:55:53 +08:00

773 B

id, title, challengeType, forumTopicId, dashedName
id title challengeType forumTopicId dashedName
cf1111c1c11feddfaeb6bdef Divide One Number by Another with JavaScript 1 17566 divide-one-number-by-another-with-javascript

--description--

We can also divide one number by another.

JavaScript uses the / symbol for division.

Example

const myVar = 16 / 2;

myVar now has the value 8.

--instructions--

Change the 0 so that the quotient is equal to 2.

--hints--

The variable quotient should be equal to 2.

assert(quotient === 2);

You should use the / operator.

assert(/\d+\s*\/\s*\d+/.test(__helpers.removeJSComments(code)));

--seed--

--seed-contents--

const quotient = 66 / 0;

--solutions--

const quotient = 66 / 33;