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 1: HTML, CSS, and JavaScript Basics!

Instruction

JavaScript Syntax Essential

Case Sensitivity

JavaScript is case-sensitive. This means that all keywords, variable names, and function names must be written consistently. If you create a function Hello(), it is different from the function HELLO(), hello(), or hEllo(). For example, the statement IF (x \> 0\) { } leads to a syntax error because the keyword if is defined in lower-case.


Whitesp...