#js
Read more stories on Hashnode
Articles with this tag
Everything in JavaScript happens inside an "Execution Context”. Whenever a JavaScript program is run an execution context is created. var number=10; ...
A JavaScript function is a block of code designed to perform a particular task. A JavaScript function is executed when "something" invokes it (calls...
The Array object is used to store multiple values in a single variable. const cars = ["Hyundai", "Honda", "BMW", "Audi"]; Some Important Array...