In this article we will try to get a clear idea about Slice or Splice which one is better to use… Slice Slice is a…
View More Slice or Splice Which one to Use?Category: JavaScript
Webpack: introduction without any code.
There have existed build tools for JavaScript as long as I have been coding with it. I can without doubt say that they are better…
View More Webpack: introduction without any code.Looping without loops.
As a coder or an aspiring one you have probably experienced many moments where all the smokes blows away and you understand something much clearer.…
View More Looping without loops.What’s the difference between JavaScript and ECMAScript?
I’ve tried googling “the difference between JavaScript and ECMAScript.” I ended up having to wade through a sea of ambiguous and seemingly conflicting results: “ECMAScript…
View More What’s the difference between JavaScript and ECMAScript?Javascript: What Are Template Literals?
ES6 introduced two types of literals: Template Literals and Tagged Template Literals to tag Template Literals. In this post, we cover both of them in…
View More Javascript: What Are Template Literals?Event Capturing and Bubbling in JavaScript
The DOM has two approaches for object to sense events: first is top down approach and second is bottom up approach. Top down approach is…
View More Event Capturing and Bubbling in JavaScriptJavaScript: Why does 3 + true = 4? (and 7 other tricky equations)
How to Follow Along It’s about to get weird — and you’re going to want to follow along with me. You can open up your Chrome Developer Console…
View More JavaScript: Why does 3 + true = 4? (and 7 other tricky equations)ECMAScript5 Strict Mode, JSON, and More….
Introduction There are a number of other new features and APIs that need attention, as well. The largest of which are Strict Mode and native JSON support. Strict Mode…
View More ECMAScript5 Strict Mode, JSON, and More….Importance of Semicolon [;] In JavaScript
It is said that in JavaScript semicolons are not compulsory. It’s true, because JavaScript automatically inserts a semicolons at required place and it is know…
View More Importance of Semicolon [;] In JavaScriptLocal Storage and Session Storage
What is localStorage? local storage is property for accessing Storage object, which is used to store and retrieve data from user’s browser. It is accessible…
View More Local Storage and Session Storage