#javascript
Read more stories on Hashnode
Articles with this tag
A JavaScript object is an entity having a state and behaviour (properties and method). For example: car, pen, bike, chair, glass, keyboard, monitor...
JavaScript is a synchronous and single-threaded language. To know behind the scene how JavaScript code gets executed internally, we have to know...
A function is a set of statements that take inputs, do some specific computation, and produce output. The idea is to put some commonly or repeatedly...
As we learned, a variable can hold only one value, for example, var i = 1, we can assign only one literal value to i. We cannot assign multiple...