--- id: cf1231c1c11feddfaeb5bdef title: Multiply Two Numbers with JavaScript challengeType: 1 videoUrl: 'https://scrimba.com/c/cP3y3Aq' forumTopicId: 18243 --- ## Description
We can also multiply one number by another. JavaScript uses the * symbol for multiplication of two numbers. Example ```js myVar = 13 * 13; // assigned 169 ```
## Instructions
Change the 0 so that product will equal 80.
## Tests
```yml tests: - text: The variable product should be equal to 80. testString: assert(product === 80); - text: You should use the * operator. testString: assert(/\*/.test(code)); ```
## Challenge Seed
```js var product = 8 * 0; ```
### After Test
```js (function(z){return 'product = '+z;})(product); ```
## Solution
```js var product = 8 * 10; ```