#javascript
Read more stories on Hashnode
Articles with this tag
In my opinion, coding represents only 10% of the equation, while debugging comprises the remaining 90%. If you excel at debugging, you can effectively...
Node.js is a runtime environment that allows you to execute JavaScript on the server side. It is built on top of the V8 JavaScript engine, which is...
What are promises in JavaScript, and how do they work? · Why do we need promises? Promises are a language feature in JavaScript that provides a way to...
What is Object-Oriented programming (OOP)? Object-oriented programming (OOP) is a programming paradigm (Style of code, “how” we write and organize...
DOCUMENT OBJECT MODEL: Structured representation of HTML documents. Allows javascript to access HTML elements and Styles TO MANIPULATE them. What...
Hoisting is the default behavior of javascript where all the variable and function declarations are moved on top. This means that irrespective of...