#interview
Read more stories on Hashnode
Articles with this tag
Object-oriented programming (OOP) is a popular paradigm that encourages modular, reusable, and maintainable code. Two fundamental concepts within OOP...
In JavaScript, arrays are fundamental data structures that store collections of elements. As a technical writer, I'll walk you through various methods...
TypeScript is a statically typed language that builds on JavaScript by adding optional types to the language. Interfaces and types are two essential...
Currying is a technique in functional programming where a function is transformed into a sequence of functions, each taking a single argument. In...
What is this in JavaScript? In JavaScript, this is a keyword that refers to the object that owns the current execution context. In other words, this...
What is Hoisting in JavaScript? Hoisting is a term used to describe the behaviour of variable declarations in JavaScript. In JavaScript, variable...