This post is work-in-progress learning-note and still in active development and updated regularly. JavaScript variables and variable declaration are described in Declaring JS Variables – var, let & const post separately. In the posts, variable scope & hoisting were discussed briefly. In this post we try to look scope & hoisting in more detail. Understanding […]
Thoughts #1: JavaScript Scope & Hoisting
I am in my very early stage of JS learning and just beginning to get used to and familiarize myself with the fundamentals of the the JS language. Last week, I spend lot of time understanding the basic JS function (declaration, expression, arrow functions) and write my learning-note about it. I have had already my […]
Understanding JS Callback Functions
Note: This post is work-in-progress learning-note and still in active development and updated regularly. In Mozilla Development Network (MDN) callback function is defined as ‘a function passed into another function as an argument, which is then invoked inside the outer function to complete some kind of routine or action’. In JS callback functions are important […]
Understanding JavaScript Functions – The Basics
This post is work-in-progress learning-note and still in active development and updated regularly. A JS function is defined as reusable block of codes that are defined at one time and used later repeatedly whenever they are needed. This process avoids writing the same code repeatedly in different part of the program and code repetition. JS […]
My Three Months of JavaScript Learning
While writing my Looking Back 2017 post, I had set Learning JavaScript Deeply as my major goals for 2018. As planned, I started learning JavaScript from January 1 and maintaining a daily learning journals. To facilitate this process, I have setup two private learning site Learn Code & JSBlog, where I collate learning resources and […]
Web Developers, Blogs & Tutorial Sites | 2018
Note: Some of the web developers, blogs and tutorial sites that I am regularly following for improving my JavaScripts & web development skills. This page is still in development & was inspired by many developers that I follow and Tania Rascia. Resourceful Blogs 1. JavaScript Tania Rascia [ GitHub | Twitter | CodePen ] Web […]
