I am trying to do…
a=['a',2,3];
a+=function(){return 'abc'};
console.log(a[3]);
Ergo I want to a.push() in a shorthand way.
Is there any kind of operator that will allow me to do this?
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.
No – and in any case, there’s nothing wrong with:
If you want to push a return value: