Asked • 03/19/19

ReferenceError: Invalid left-hand side in assignment?

my code for a rock paper scissors game (called toss) is as follows: var toss = function (one,two) { if(one = "rock" && two = "rock") { console.log("Tie! Try again!"); } // more similar conditions with `else if` }; When I enter in the parameters toss("rock","rock") I get this error code: >"ReferenceError: Invalid left-hand side in assignment" How to fix it? What this error means and what other cases when this error can happen?

1 Expert Answer

By:

Still looking for help? Get the right answer, fast.

Ask a question for free

Get a free answer to a quick problem.
Most questions answered within 4 hours.

OR

Find an Online Tutor Now

Choose an expert and meet online. No packages or subscriptions, pay only for the time you need.