JavaScript – About “null” and “undefined” types
JavaScript supports different types of data types. JavaScript has dynamic types. That means, the type of the variable is come to know depending on the value the variable holds. What happened if the variable is not assigned with any value? Good, we don’t know the type of the variable. Hence “undefined” type. If the variable is […]