Among JavaScript and ASP script, which is faster?
ASP Script is a server-side scripting language and is executed on the server.
Javascript on the other hand is a client-side scripting language that is executed on the client browser.
Since javascript is executed on the client, it doesn't need to make a network call and hence saves the round trip time it takes to send a request and receive a response from the server. So JavaScript is faster.
What would be the result of 5+2+"3" in JavaScript?
Is JavaScript supports automatic type conversion?
What will the following code return:Boolean(x==="5") if x=5?
What will the following code return:Boolean(x!=="5") if x=5?
Which is a strict equality operator in JavaScript?