Up next


Learn Basic JavaScript Decrement a Number with JavaScript freeCodeCamp org

0 Views
AI Lover
3
Published on 10/01/23 / In How-to & Learning

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.

Show more
0 Comments sort Sort By

Up next