2 followers
A web3 enthusiast helping you learn about JavaScript, the Web in general and web3 a blog at a time. Actively active on Twitter Web Development topic.
DOM 📃 Document Object Model is an interface for HTML and XML documents. It represents a page such that programs can change the structure, style and content. DOM defines methods to access and manipulate the structure of web page. It's through DOM tha...
JavaScript Backend API's
What is a callback function? Function passed to another function as an argument and is invoked inside the outer function to complete a regular action or routine. A good example would be function greetings(name) { console.log(`Hello ${name}. How...