60 lines
1.3 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
id: cf1231c1c11feddfaeb5bdef
title: Multiply Two Numbers with JavaScript
challengeType: 1
videoUrl: ''
localeTitle: Умножить два числа с помощью JavaScript
---
## Description
<section id="description"> Мы также можем умножить одно число на другое. JavaScript использует символ <code>*</code> для умножения двух чисел. <p> <strong>пример</strong> </p><blockquote> myVar = 13 * 13; // присвоено 169 </blockquote></section>
## Instructions
<section id="instructions"> Измените <code>0</code> чтобы продукт равнялся <code>80</code> . </section>
## Tests
<section id='tests'>
```yml
tests:
- text: Сделать переменный <code>product</code> равным 80
testString: 'assert(product === 80,"Make the variable <code>product</code> equal 80");'
- text: Используйте оператор <code>*</code>
testString: 'assert(/\*/.test(code), "Use the <code>*</code> operator");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
var product = 8 * 0;
```
</div>
### After Test
<div id='js-teardown'>
```js
console.info('after the test');
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>