Skip to main content

--description--

We can also multiply one number by another.

JavaScript uses the * symbol for multiplication of two numbers.

Example

const myVar = 13 * 13;

myVar would have the value 169.

--instructions--

Change the 0 so that product will equal 80.

--hints--

The variable product should be equal to 80.

assert(product === 80);

You should use the * operator.

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

--seed--

--after-user-code--

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

--seed-contents--

const product = 8 * 0;

--solutions--

const product = 8 * 10;