--- id: cf1231c1c11feddfaeb5bdef title: Multiply Two Numbers with JavaScript challengeType: 1 videoUrl: '' localeTitle: Умножить два числа с помощью JavaScript --- ## Description
Мы также можем умножить одно число на другое. JavaScript использует символ * для умножения двух чисел.

пример

myVar = 13 * 13; // присвоено 169
## Instructions
Измените 0 чтобы продукт равнялся 80 .
## Tests
```yml tests: - text: Сделать переменный product равным 80 testString: 'assert(product === 80,"Make the variable product equal 80");' - text: Используйте оператор * testString: 'assert(/\*/.test(code), "Use the * operator");' ```
## Challenge Seed
```js var product = 8 * 0; ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```