1.2 KiB
1.2 KiB
id, title, localeTitle, challengeType
id | title | localeTitle | challengeType |
---|---|---|---|
cf1111c1c11feddfaeb4bdef | Subtract One Number from Another with JavaScript | Resta un número de otro con JavaScript | 1 |
Description
-
para restar.
Ejemplo
myVar = 12 - 6; // assigned 6
Instructions
0
por lo que la diferencia es 12
.
Tests
tests:
- text: Haz la <code>difference</code> variable igual a 12.
testString: 'assert(difference === 12, "Make the variable <code>difference</code> equal 12.");'
- text: Sólo restar un número de 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
console.info('after the test');
Solution
var difference = 45 - 33;