In javascript which operation requires more work for the browser?
var variable1;
// Operation 1
variable1 = 8;
// Operation 2
if (variable1 != 8) {
}
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.
According to this jsPerf test that I just made, assignment is much faster than comparison — sometimes by an order of magnitude, depending on your browser.
I observed a weird bug in Firefox where the operations per minute result for assignment was sometimes reported as “Infinity”. If that happens, simply run the test again.