Challenge Increment A Number With Javascript - thelastmile/FreeCodeCamp GitHub Wiki
Challenge Increment a Number with Javascript
You can easily increment or add 1
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.