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