Beware the Global Const

It is common wisdom in the programming world to discourage the use of global variables.1 It is bug-prone due to shared mutability across modules. It introduces implicit dependencies within interfaces ...
0 Read More

shallowCopy & deepCopy in JavaScript

ShallowCopy When we copy an object to a variable and then change the value using that variable, the original object's values also change. This happens because we're not copying the actual data—we're...
0 Read More

What is Javascript?

As we all know that JavaScript is one of the widely used programming languages across all domains, such as web, mobile, game development etc. till date now. But why it becomes so much popular ...
0 Read More