JavaScript

Arrow functions – ES6

Arrow functions are very popular features of JavaScript which is introduced in ECMASCRIPT 6 (commonly known as ES6 and ES2015). Arrow functions are very concise in syntax to write expressions of functions What are Arrow functions? Arrow functions are known as FAT Arrow functions Which are more concise in syntax to write function Expression Arrow functions use icons equal to…

Continue Reading

Angular

Angular 4 V/S Angular 2

Here in this we are going to explore what are new features available in Angular 4. Before going to explore new features of Angular 4 a common question you all will have is that after Angular 2 why google has launched Angular 4 and skipped Angular 3. So the answer is that Angular libraries are in a single GITHUB repository…

Continue Reading

HTML 5

Access web application offline – HTML5 Application cache

In this topic we will learn how to access web applications locally without network connection…For that first of all we will learn what is an offline web application… What is an offline web application? Applications that we can access without network connection are known offline web applications. These are lists of URLs, Images, HTML files, CSS files, Java script files…

Continue Reading

HTML 5

HTML5 Localstorage

Html5 Local storage Local storage in html5 is a way to store values in the format of key/value pairs in your web browser. The same like cookies data persists after you close the browser or navigate away from your web application or website. The only difference between cookies and local storage is that local storage is not transmitting data to…

Continue Reading