#javascript
Read more stories on Hashnode
Articles with this tag
The Facade pattern is a structural design pattern that provides a simple, unified interface to a complex subsystem of classes, making it easier for...
Currying is a concept in functional programming where a function that takes multiple arguments is transformed into a series of functions, each taking...
"use strict" is a JavaScript directive that indicates that the code should be executed in "strict mode." In strict mode, certain errors are thrown...
We can use setInterval() method of JavaScript to monitor changes in the DOM after regular intervals. For example, we have to add event listener to...
The console.log() method is mainly used for debugging in JavaScript. It outputs a message to the web console. All modern web browsers provides support...