filmov
tv
Learn Basic JavaScript Decrement a Number with JavaScript freeCodeCamp org

Показать описание
Hi,guys in this lesson we learnt the increment with the assignment operator
here is the summary
You can easily decrement or decrease a variable by one with the -- operator.
i--;
is the equivalent of
i = i - 1;
Note
The entire line becomes i--;, eliminating the need for the equal sign.
Change the code to use the -- operator on myVar.
here is the summary
You can easily decrement or decrease a variable by one with the -- operator.
i--;
is the equivalent of
i = i - 1;
Note
The entire line becomes i--;, eliminating the need for the equal sign.
Change the code to use the -- operator on myVar.