* fix: convert js algorithms and data structures * fix: revert some blocks back to blockquote * fix: reverted comparison code block to blockquotes * fix: change js to json Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: convert various section to triple backticks * fix: Make the formatting consistent for comparisons
1.2 KiB
1.2 KiB
id, title, challengeType, videoUrl
id | title | challengeType | videoUrl |
---|---|---|---|
cf1111c1c11feddfaeb4bdef | Subtract One Number from Another with JavaScript | 1 | https://scrimba.com/c/cP3yQtk |
Description
-
symbol for subtraction.
Example
myVar = 12 - 6; // assigned 6
Instructions
0
so the difference is 12
.
Tests
tests:
- text: Make the variable <code>difference</code> equal 12.
testString: assert(difference === 12, 'Make the variable <code>difference</code> equal 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),'Only subtract one number from 45.');
Challenge Seed
var difference = 45 - 0;
After Test
(function(z){return 'difference = '+z;})(difference);
Solution
var difference = 45 - 33;