Deep Dive Into Immediately Invoked Function Expressions (IIFEs)

Note: This post is work-in-progress learning-note and still in active development and updated regularly. In the previous learning-note posts, JavaScript (JS) functions: the basics, callback functions, declaration vs expression were discussed in detail. In this learning-note post, we will deep dive into another important function called the immediately invoked functions expressions (IIFEs) and discuss its […]

JavaScript Functions – Parameters Vs Arguments

Note: This post is work-in-progress learning-note and still in active development and updated regularly. In JavaScript (JS), functions and objects are very important component of JS language, often use of the terms parameters and arguments seems to be used interchangeably. For beginners, this could be confusing. Yes. there is some difference between parameters and arguments. […]