Aptana is showing error at this line:
var myVar = myVar1 = myVar2;
although when I deploy this script it works fine in FF or IE.
EDIT : it is showing an error on the second = sign, it is expecting a; instead got = sign.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
That looks like an error coming from the JSLint JavaScript Validator. It’s most likely complaining because myVar1 is not being declared with “var”. You have a couple of options:
Samples:
or