You have already completed these exercises!
Do you want to take them again?
You completed the JS Comparisons Exercises from W3Schools.com
Share on:
Consider the following code:let x = (5 == 5 || 5 < 2);What will be the value of x?
let x = (5 == 5 || 5 < 2);
x
true
false