#javascript
Read more stories on Hashnode
Articles with this tag
Introduction Consider the following code snippet: // if-else statement if (isUserLoggedIn) { return privateData; } else { return false; } The...
Type Conversion: We manually convert one data type to another. Type Coercion: JavaScript automatically converts data types behind the scenes for...
There are three different ways of declaring a variable in JavaScript : let const var let and const were introduced in ES6, while var is the older...