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

766 B

id title challengeType videoUrl localeTitle
bd7993c9c69feddfaeb7bdef Multiply Two Decimals with JavaScript 1

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert(product === 5.0, "The variable <code>product</code> should equal <code>5.0</code>.");'
  - text: ''
    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