How simple mobile apps, developed by using common web technologies are improving the way we interact with apps. In 2015, when google introduced PWA, it was focused on three fundamental things:- Reliable — Load instantly and never show the downasaur, even in uncertain network conditions. Fast — Respond quickly to user interactions with silky…
From the inception of early 90’s till date Async programming came long way in web. In 2005 , Jesse James Garrett coined the term AJAX in an article titled “Ajax: A New Approach to Web Applications. But due to ‘callback hell’ people started panicked by AJAX and tried to explored new…
What’s new in React 16? The new version of React 16 comes with a lot of new features and improvements to stability. Facebook, the company behind React, has rewritten the entire core architecture making it able to support long-awaited features. In this post, we will explore the changes, and how…
Object-oriented programming (OOP) is a programming paradigm based on the concept of “objects”, which are data structures that contain data, in the form of fields, often known as attributes; and code, in the form of procedures, often known as methods. Functional programming is a programming paradigm, a style of building…
So, Let’s start with a story. From last 2 years I am working on JavaScript and developing web front end and I am enjoying it. Back end guys provide’s us some API’s written in Java,python (we don’t care) and we simply write a AJAX call, get our data and guess…
Prototype Like Douglas Crockford said – “Every Object is linked to a prototype object from which it can inherit properties. All objects created from object literals are linked to Object.prototype, an object that comes standard with JavaScript.” Here, we will explore some interesting things. What is a Prototype? {Prototype} (Prototype with…