Type Conversion is said to happen when we manually convert one data type to another. While when JavaScript automatically converts data types behind the scenes for us, then it's called Type Coercion
Read MoreThere are three ways in which we can declare variables in JavaScript - let, const and var. let and const were introduced with ES6 while var is the older way of declaring variables in JavaScript.
Read MoreShort circuiting is an awesome technique that can help developers write concise and expressive code and at the same time avoid unnecessary computations. It is a valuable tool for developers to have in their toolkits.
Read More