I am currently writing code to populate a select tag with all the hours of the day. I recently rewrote a function that will populate a temporary select tag based off a time passed in as an argument and then return the temporary select at the end. When I attempt to assign the product to a variable, Javascript gives the error "Invalid Assignment on left-hand side." Have I stumbled onto one of the cases where you can't directly assign variables to each other, or is this a syntax error?
This the line that is giving me an error
eval(select1) = newHours('000');
Where select1 is a variable that contains the name of the day and a number, both of which change depending on input, hence the eval statement. The function newHours returns a temporary select.