You have already completed these exercises!
Do you want to take them again?
You completed the JS Operators Exercises from W3Schools.com
Share on:
Consider the following code:let x = 5;let y = '8';let z = x + y;What will be the result of z?
let x = 5;let y = '8';let z = x + y;
z
undefined
58
13