Understanding Coercion
There are seven data types in javascript namely: null, undefined,string,number,symbol, boolean and object. The first six are called primitives. The last one, Object is called non-primitive.
Javascript is dynamically typed. Mea...