JS

JavaScript Fundamentals 3 - Assignment expressions...

14.

What is the result of the assignment expression x = y = 5?

The value of x is 5 and the value of y is 5

The value of x is 5 and the value of y is 0

The value of x is 0 and the value of y is 5

An error is thrown because the expression is invalid