Please explain what this is doing with regards to calling a function and using the && operator.
callback(data && data.length > 1 && JSON.parse(data));
Also, which value actually gets passed to the function?
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.
It is a way to say if data is true(not null) and its length is > 1 then call JSON.parse(data).
If first expression is true then only second expression is evaluated and so on.
Its equivalent to
if(data)
if(data.length > 1)
callback(JSON.parse(data));