Showing posts from September, 2014

JavaScript Quiz-1

1. What is outcome of  x == y ?  var x = "ZYTHAM" ; var y = new String ( "ZYTHAM" ); x==y //prints true/false Answer : true == compares values of x and y . Since x and y both has equal values. 2. What will…

Load More
That is All