I am running the visual studio 2010 debugger to try and debug a javascript script, and it skips over this line:
var selectedStatus = "assigned"
and then later throws an error when trying to use selectedstatus because it never created and assigned into the variable.
Does anyone have any idea why it would be skipping over this line? Thanks.
Maybe your source is out of sync with what's being executed and it just "seems" like it's skipping over that line, while the code that's actually being executed has empty line on that line number.