Operators Challenge

Complete this assessment with 100% score to master this chapter.

01What does the modulo operator (%) do?

02What is the difference between == and ===?

03What does the expression 2 + 3 * 4 evaluate to in JavaScript?

04What does the logical OR operator (||) return when used like: false || 'hello'?

05Which operator is used for exponentiation (raising to a power) in modern JavaScript?