Skip to main content

--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--

--after-user-code--

(function(z){return 'quotient = '+z;})(quotient);

--seed-contents--

const quotient = 66 / 0;

--solutions--

const quotient = 66 / 33;