1.1 KiB
1.1 KiB
id, title, challengeType, videoUrl, forumTopicId
id | title | challengeType | videoUrl | forumTopicId |
---|---|---|---|---|
56533eb9ac21ba0edf2244ac | Increment a Number with JavaScript | 1 | https://scrimba.com/c/ca8GLT9 | 18201 |
--description--
You can easily increment or add one to a variable with the ++
operator.
i++;
is the equivalent of
i = i + 1;
Note
The entire line becomes i++;
, eliminating the need for the equal sign.
--instructions--
Change the code to use the ++
operator on myVar
.
--hints--
myVar
should equal 88
.
assert(myVar === 88);
You should not use the assignment operator.
assert(
/var\s*myVar\s*=\s*87;\s*\/*.*\s*([+]{2}\s*myVar|myVar\s*[+]{2});/.test(code)
);
You should use the ++
operator.
assert(/[+]{2}\s*myVar|myVar\s*[+]{2}/.test(code));
You should not change code above the specified comment.
assert(/var myVar = 87;/.test(code));
--seed--
--after-user-code--
(function(z){return 'myVar = ' + z;})(myVar);
--seed-contents--
var myVar = 87;
// Only change code below this line
myVar = myVar + 1;
--solutions--
var myVar = 87;
myVar++;