var, let, and const - The Three Musketeers
Understanding the differences between var, let & const
Jun 10, 20226 min read

Search for a command to run...
Understanding the differences between var, let & const

Introduction In JavaScript, almost everything is an object. An object can have methods - a function that is a property of the object. const user = { firstName: "Alicia", lastName: "Keys", greet: function () { alert("Hello!"); } }; user.g...

Script loading techniques and their impact on performance
