freeCodeCamp/curriculum/challenges/arabic/02-javascript-algorithms-an.../basic-javascript/multiply-two-numbers-with-j...

60 lines
731 B
Markdown

---
id: cf1231c1c11feddfaeb5bdef
title: Multiply Two Numbers with JavaScript
challengeType: 1
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert(product === 80,"Make the variable <code>product</code> equal 80");'
- text: ''
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>