Randell Dawson e9212c61d2 fix(curriculum): Remove unnecessary assert message argument from English challenges JavaScript Algorithms and Data Structures - 01 (#36401)
* fix: rm assert msg basic-javascript

* fix: removed more assert msg args

* fix: fixed verbiage

Co-Authored-By: Parth Parth <34807532+thecodingaviator@users.noreply.github.com>
2019-07-13 08:07:53 +01:00

1.1 KiB

id, title, challengeType, videoUrl
id title challengeType videoUrl
cf1111c1c11feddfaeb6bdef Divide One Number by Another with JavaScript 1 https://scrimba.com/c/cqkbdAr

Description

We can also divide one number by another. JavaScript uses the / symbol for division.

Example

myVar = 16 / 2; // assigned 8

Instructions

Change the 0 so that the quotient is equal to 2.

Tests

tests:
  - text: Make the variable <code>quotient</code> equal to 2.
    testString: assert(quotient === 2);
  - text: Use the <code>/</code> operator
    testString: assert(/\d+\s*\/\s*\d+/.test(code));

Challenge Seed

var quotient = 66 / 0;


After Test

(function(z){return 'quotient = '+z;})(quotient);

Solution

var quotient = 66 / 33;