Type Conversion In Modern Javascript - Part I
Type conversions in javascript refer to the ability to convert from one data type to another. For example, we can convert numbers to strings as follows;
console.log(typeof(30 + 'years'));//string
If javascript fails to perform a meaningful type conve...
cyruscodes.hashnode.dev2 min read