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…
Author: Mitesh Gadhiya
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…
Access stored procedure with user defined data type using Entity framework
During your professional career when you are using entity framework you might be facing situations where you need to insert multiple data at a time. Well inserting multiple data we can achieve in SQL by creating a custom table type and using it with stored procedure. Now the common question raised in your mind is : is it possible to…
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…
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…