freeCodeCamp/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/subtract-one-number-from-another-with-javascript.english.md
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
cf1111c1c11feddfaeb4bdef Subtract One Number from Another with JavaScript 1 https://scrimba.com/c/cP3yQtk

Description

We can also subtract one number from another. JavaScript uses the - symbol for subtraction.

Example

myVar = 12 - 6; // assigned 6

Instructions

Change the 0 so the difference is 12.

Tests

tests:
  - text: Make the variable <code>difference</code> equal 12.
    testString: assert(difference === 12);
  - text: Only subtract one number from 45.
    testString: assert(/var\s*difference\s*=\s*45\s*-\s*[0-9]*;(?!\s*[a-zA-Z0-9]+)/.test(code));

Challenge Seed

var difference = 45 - 0;


After Test

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

Solution

var difference = 45 - 33;