--- id: bd7993c9c69feddfaeb7bdef title: Multiply Two Decimals with JavaScript challengeType: 1 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert(product === 5.0, "The variable product should equal 5.0.");' - text: '' testString: 'assert(/\*/.test(code), "You should use the * operator");' ```
## Challenge Seed
```js var product = 2.0 * 0.0; ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```