Course Content
Introduction to JavaScript
Challenge: Change the Variable
Task
- Create the variable
num
. - Assign the value
29
to the variablenum
. - Increase the
num
variable by 99. - Decrease the
num
variable by 23.
The output should be:
Hint
Use the
=
, +=
and -=
operators.
Section 3.
Chapter 5