1.4 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.4 KiB
		
	
	
	
	
	
	
	
id, title, challengeType, videoUrl, localeTitle
| id | title | challengeType | videoUrl | localeTitle | 
|---|---|---|---|---|
| bd7993c9c69feddfaeb7bdef | Multiply Two Decimals with JavaScript | 1 | Умножить два десятичных знака с помощью JavaScript | 
Description
Instructions
0.0 чтобы продукт равнялся 5.0 . Tests
tests:
  - text: Переменный <code>product</code> должен быть равен <code>5.0</code> .
    testString: 'assert(product === 5.0, "The variable <code>product</code> should equal <code>5.0</code>.");'
  - text: Вы должны использовать оператор <code>*</code>
    testString: 'assert(/\*/.test(code), "You should use the <code>*</code> operator");'
Challenge Seed
var product = 2.0 * 0.0;
After Test
console.info('after the test');
Solution
// solution required