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

731 B

id title challengeType videoUrl localeTitle
cf1231c1c11feddfaeb5bdef Multiply Two Numbers with JavaScript 1

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert(product === 80,"Make the variable <code>product</code> equal 80");'
  - text: ''
    testString: 'assert(/\*/.test(code), "Use the <code>*</code> operator");'

Challenge Seed

var product = 8 * 0;

After Test

console.info('after the test');

Solution

// solution required