Before getting started, make sure that you're familiar with the Chrome Console.
Enter the following expressions into your console.
1 + 2
3 * 5
5 / 4 - 13
5000 * 234
1073 / 57 + 200
Why are the values produced by the following two expressions different? What are they?
3 + 2 * 4 - 1
(3 + 2) * (4 - 1)
Calculate how old you are in minutes using the console.
What is the percentage of people in the class with brown hair? Use the console to find out.
Try the following expressions in the console:
6 % 2
42 % 10
5 % 2
6 % 3
7 % 4
100 % 12
What is the significance of the result? How does the % (modulus) operator
work?
Try the following:
3 % 2
4 % 2
5 % 2
6 % 2
What do the results tell you about the first operand to the modulus operator?
Write a string that represents your full name.
Write a string that represents your favorite food.
Use the + operator to combine (known as concatenation) two or more
strings, e.g.:
// Your first and last names
"Josh" + " " + "Lehman"
Fix the errors in the following strings:
Where are all the quotes?
'hmm something is not right"
'Do other ' * 'operators work with string concatenation?