Skip to content

Challenge Increment A Number With Javascript

Quincy Larson edited this page Aug 20, 2016 · 1 revision

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.

Clone this wiki locally