Home

Welcome to Every Day Code A Platform for Programmers

  • Fun with Functions : The JavaScript Way – Part 2

    November 25, 2019 by

    Now let’s start from where we left. Let us understand few more concepts in functions. 4. Passing variable number of arguments to a function In JavaScript, and in few other languages it is possible to send multiple number of arguments to the same function. Usually in general if our functions accepts two arguments, then while… Read more

  • Variable Declaration: var vs let vs const

    December 11, 2019 by

    In JavaScript and after the release of ES6 we have three ways to declare variables in JavaScript. These are var, let and const. Each of them have different scopes and different properties. It is worth the time and effort to understand the differences between these keywords.

  • Understanding Scopes in JavaScript

    December 9, 2019 by

    One of the most important concepts in JavaScript, which one should master, is scope. Scopes are a little different in JavaScript compared to other languages like C# or Java. Scope defines the lexical memory space in which a variable, function or object is accessible for the JavaScript interpreter for it’s use during the run-time.

View all posts

Follow My Blog

Get new content delivered directly to your inbox.