74 lines
2.0 KiB
Markdown
Raw Normal View History

---
id: 56533eb9ac21ba0edf2244ac
title: Increment a Number with JavaScript
challengeType: 1
videoUrl: https://scrimba.com/c/ca8GLT9
forumTopicId: 18201
localeTitle: Увеличение номера с помощью JavaScript
---
## Description
<section id='description'>
2020-01-10 08:48:22 +03:00
Вы можете легко <dfn>инкрементировать</dfn>, то есть прибавлять к переменной единицу, используя оператор <code>++</code>. <code>i++;</code> эквивалентно <code>i = i + 1;</code> <strong>Обратите внимание</strong> <br>: вся строка становится <code>i++;</code>, и отпадает необходимость в знаке равенства.
</section>
## Instructions
<section id='instructions'>
2020-01-10 08:48:22 +03:00
Измените код так, чтобы использовать оператор <code>++</code> с <code>myVar</code> . <strong>Подсказка</strong> <br> Подробнее об <a href="https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Operators/Arithmetic_Operators#Increment_()" target="_blank">арифметических операторах - Increment (++)</a> .
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>myVar</code> should equal <code>88</code>
testString: assert(myVar === 88);
- text: <code>myVar = myVar + 1;</code> should be changed
testString: assert(/var\s*myVar\s*=\s*87;\s*\/*.*\s*([+]{2}\s*myVar|myVar\s*[+]{2});/.test(code));
- text: Use the <code>++</code> operator
testString: assert(/[+]{2}\s*myVar|myVar\s*[+]{2}/.test(code));
- text: Do not change code above the line
testString: assert(/var myVar = 87;/.test(code));
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
var myVar = 87;
// Only change code below this line
myVar = myVar + 1;
```
</div>
### After Tests
<div id='js-teardown'>
```js
(function(z){return 'myVar = ' + z;})(myVar);
```
</div>
</section>
## Solution
<section id='solution'>
```js
var myVar = 87;
myVar++;
```
</section>