Exercise: JS Operators
#
ObjectiveYour objective is to practice using and reading operators and operation results between JavaScript values.
#
StepsExercise Repo: JavaScript Operators
#
Exercise 1- Declare 2 variables,
a
andb
, and assign 20 toa
and 4 tob
- Declare a variable
add
that uses the+
operator to store the result of adding the values stored ina
andb
- Declare a variable
minus
that uses the-
operator to store the result of subtracting the values stored ina
andb
- Declare a variable
multiply
that uses the*
operator to store the result of multiplying the values stored ina
andb
- Declare a variable
dividing
that uses the/
operator to store the result of dividing the values stored ina
andb
You can print the value of the variables to the browser console (ex: console.log(add)
) to check the result.
#
Exercise 2- Use the following code to answer the questions below:
- What is the value of: num + str?
- What is the value of: num + str2?
- What is the value of: num + isPresent?
- What is the value of: firstName + num?
- What is the value of: isPresent + str?
- What is the value of: firstName + lastName?
Use the code above to test and print the results.
#
Exercise 3- Use the following code to answer the questions below:
- What is the value of: val == str3?
- What is the value of: val === str3?
- What is the value of: !isAwake?
- What is the value of: ("eleven" == str4 && val >= str3)?
- What is the value of: (!isAwake || isAwake)?
- What is the value of: 0 == false?
- What is the value of: 0 === false?
- What is the value of: 0 != false?
- What is the value of 0 !== false?
Use the code above to test and print the results.