Introduction To Programming
10-152-310

Learning Plan 3 : Math and Operators

Student

  • Name:
  • Section:
  • Email:

Lab Steps

  1. Open this file in your browser and Microsoft Visual Studio
  2. Add your name, section, and email
  3. After the line: YOUR CODE STARTS AFTER THIS LINE:
  4. Add document.write(); statements that demonstrate the following boolean tests. Your code should produce what's in the (...).
    1. 5 is the same as 5 (true)
    2. 10 is same as "10" (true)
    3. "Bill" is different than "bill" (false)
    4. 15 is different than 16 (true)
    5. 45 is different from "45" (true)
    6. "32" is not different from 32 (false )
  5. (I did the first one for you.)

Example Output

        true
        true
        false
        true
        true
        false

Your Output: