I just saw a expression from a JavaScript sample like following:
var some = (x, y, z) + a;
what does it mean? and what is the result?
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.
This is JavaScript’s comma operator
Therefore,
var some = (x, y, z) + a;is the same asvar some = z + a;, exceptxandyare evaluated too.It is useful if you want to shorten things to one line or need something evaluated before a second thing is available.