Mar 15 · 9 min read · 1. Introduction Hey Scroller! When you hear the word function in programming, what comes to mind first? Most likely, doing a specific task, right? Let’s understand this with a real-life example. Imagi
Join discussionMar 15 · 5 min read · Functions are the most fundamental part of any programming language, which makes code resuable, readable and modular. Imagine a phone that doesn’t have a contacts list. Every time you want to call a f
Join discussion
Mar 15 · 6 min read · Introduction JavaScript is a flexible language, and one of the most powerful concepts in it is the function context.When working with functions, we often need to know which object is executing the fun
Join discussion
Mar 15 · 5 min read · Suppose you need to perform an operation many times in code, for example finding the maximum of two numbers. Are you okay with writing the complete code again and again? let a = 10; let b = 20; let ma
Join discussion