Why let is better than const in JavaScript
I’ve read many JavaScript articles which insist that const is a better default than let. Many of the arguments revolve around the notion… (more…)
Read more »
There seems to be some confusion when it comes to JavaScript modules and how they exactly work, and why are there different forms in which we can use them. Today I’ll explain the different ways in which you can export and import modules.
Some background o… Read more