Event delegation is a pattern of adding an event listener to a parent node instead, of adding an event listener to the individual node. The…
View More Event Delegation in JavaScriptCategory: JavaScript
Spread syntax (three dots) in JavaScript
Spread syntax which is used by typing three dots (…) in JavaScript. It allows an array expression or string or anything which can be iterating…
View More Spread syntax (three dots) in JavaScriptarguments object in JavaScript function
The arguments object is an Array-like object matching to the arguments passed to a function. The arguments object is a local variable available within all…
View More arguments object in JavaScript functionDefault Parameter in JavaScript function
In any programming language we often require having default parameter or default value for the parameter in a function. JavaScript allow us to initialize parameter…
View More Default Parameter in JavaScript functionJavaScript Running On A Wearable? Yes, And Its Native and Angular.
A while ago i was Searching, if it’s possible to use NativeScript and Angular with Android Wear. It’s possible, easy to setup in 5 steps…
View More JavaScript Running On A Wearable? Yes, And Its Native and Angular.What’s new in ECMAScript 2018
Four new feature proposals for the specification underlying JavaScript are finalized and four others are under consideration Arif KhojaArif Khoja is a Developer. He is…
View More What’s new in ECMAScript 2018Superstruct
I stumbled upon this GitHub project a few days ago. It’s called Superstruct, and it looks like an awesome way to validate data in JavaScript.…
View More SuperstructFor-of Loop
For of loop is one of a few recent additions to the for loop in JavaScript. It makes it possible to do what is basically…
View More For-of LoopProgramming asynchronously: Promises
Promises are in many ways the logical next step from callback. A promise is just a special object that promise to either resolve, or throw…
View More Programming asynchronously: PromisesProgramming asynchronously: Async Await
One of the big issues with using either callbacks or Promises is that the code becomes much more complex that it would, if you were…
View More Programming asynchronously: Async Await