JavaScript Quiz #4

Understanding JavaScript by example is useful for absorbing the different concepts of the language quickly. In this post, I will illustrate a JavaScript quiz in order to understand how JavaScript operators work together. Assume that we have the following JavaScript code:



var object1 = {
valueOf: function () {
return 1;
},
toString: function () {
return "object1";
}
};

var object2 = {
valueOf: function () {
return 2;
},
toString: function () {
return "object2";
}
};

alert((object2 > object1 +-- object1) + true); //What is the output of the alert?

What is the output of the alert?


Read the complete answer

 •  0 comments  •  flag
Share on Twitter
Published on April 05, 2013 18:45
No comments have been added yet.