Values and Types in JavaScript
JavaScript is untyped/loosely/dynamically typed scripting language.
It means a variable in JavaScript is :
Not statically typed : The type of data (i.e. Number/String/Boolean) a variable is need not to be defined in advance.
Not Strongly typed : A...
shivamv.hashnode.dev3 min read