Assignment JS1: JavaScript Basics (Expressions and Assignment Statements)
Part 1: Evaluate each of the following expressions.
3 * (-5)
4 + 2 * 5 - 10
5 / 2
Math.floor(5/2)
9 % 3
-21 % -2
21 % -2
4 + 5 * 2 + 3
(4 + 5) * 2 + 3
4 * 5 / 2 + 5 % 2
-3 * (( 4 + 2 ) * 2.0 ) - 1
5 / (20 - (100 / 5))
1 % -2
-3 % 8
4 * 3 / 4 + 12
1 + 25 % 5
1 % (6 % 3)
12 % 8 % 20 % 15