* fix: Chinese test suite Add localeTiltes, descriptions, and adjust test text and testStrings to get the automated test suite working. * fix: ran script, updated testStrings and solutions
1.1 KiB
1.1 KiB
id, title, challengeType, videoUrl, localeTitle
id | title | challengeType | videoUrl | localeTitle |
---|---|---|---|---|
cf1111c1c11feddfaeb4bdef | Subtract One Number from Another with JavaScript | 1 | 使用JavaScript从另一个数字中减去一个数字 |
Description
-
符号进行减法。 例
myVar = 12 - 6; //分配6
Instructions
0
因此差异为12
。 Tests
tests:
- text: 使变量<code>difference</code>等于12。
testString: assert(difference === 12);
- text: 只从45中减去一个数字。
testString: assert(/difference=45-33;?/.test(code.replace(/\s/g, '')));
Challenge Seed
var difference = 45 - 0;
After Test
console.info('after the test');
Solution
// solution required