* feat(tools): add seed/solution restore script * chore(curriculum): remove empty sections' markers * chore(curriculum): add seed + solution to Chinese * chore: remove old formatter * fix: update getChallenges parse translated challenges separately, without reference to the source * chore(curriculum): add dashedName to English * chore(curriculum): add dashedName to Chinese * refactor: remove unused challenge property 'name' * fix: relax dashedName requirement * fix: stray tag Remove stray `pre` tag from challenge file. Signed-off-by: nhcarrigan <nhcarrigan@gmail.com> Co-authored-by: nhcarrigan <nhcarrigan@gmail.com>
1.3 KiB
1.3 KiB
id, title, challengeType, videoUrl, forumTopicId, dashedName
id | title | challengeType | videoUrl | forumTopicId | dashedName |
---|---|---|---|---|---|
587d7b7e367417b2b2512b23 | 使用 parseInt 函数 | 1 | https://scrimba.com/c/cm83LSW | 301183 | use-the-parseint-function |
--description--
parseInt()
函数解析一个字符串返回一个整数下面是一个示例:
var a = parseInt("007");
上面的函数把字符串 "007" 转换成数字 7。 如果字符串参数的第一个字符是字符串类型的,结果将不会转换成数字,而是返回NaN
.
--instructions--
在convertToInteger
函数中使用parseInt()
将字符串str
转换为正数并返回。
--hints--
convertToInteger
应该使用parseInt()
函数。
assert(/parseInt/g.test(code));
convertToInteger("56")
应该返回一个数字。
assert(typeof convertToInteger('56') === 'number');
convertToInteger("56")
应该返回 56。
assert(convertToInteger('56') === 56);
convertToInteger("77")
应该返回 77。
assert(convertToInteger('77') === 77);
convertToInteger("JamesBond")
应该返回 NaN。
assert.isNaN(convertToInteger('JamesBond'));
--seed--
--seed-contents--
function convertToInteger(str) {
}
convertToInteger("56");
--solutions--
function convertToInteger(str) {
return parseInt(str);
}