Equality Gotchas – JavaScript

Type coercion is one of the very interesting concept to understand in JavaScript. To delve deep into the understanding of this concept let us first evaluate few conditional statements into the console of google chrome (or you can use node or any suitable method to evaluation these conditions. You will have to modify your codeContinue reading “Equality Gotchas – JavaScript”

JavaScript – Data Types

Well, we all know that JavaScript is a functional language (which is an entirely a different discussion about being functional language) has some data types, namely: Number (not Integer) String Boolean null (Special value I would call it) undefined (Special value I would call it) Let’s talk about each of this data type in detail: Number:Continue reading “JavaScript – Data Types”