Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Well done!
You have completed (UPI) Chapter 3: Fundamentals of JavaScript Programming!
Instruction
Computer Languages and the Use of Variables
Why Use Variables?
Computer languages need to use variables because, in most cases, programs are designed to solve general problems rather than specific ones.
For instance, consider the question:
What is the circumference of a circle with a radius of 5 cm?
This specific question can be solved without using variables:
alert(2 * 5 * 3.14);
However, most questions...