The AngularJs code var app = angular.module( 'app' , [ 'ngStorage' ]); app.controller( 'Ctrl' , [ "$scope" , "$localStorage" , function ( $ scope, $ localStorage) { $ scope. $ storage = $ localStorage. $ default ({ a: 100 , b: 200 }); }]); The HTML Code < div ng - app = "app" ng - controller = "Ctrl" > < h4 > Keep the data on page refreshing in AngularJs < /h4 > < button ng - click = "$storage.a = $storage.a + 5" class = "button" > {{ $ storage.a}} < /button > + < button ng - click = "$storage.b = $storage.b + 5" class = "button" > {{ $ storage.b}} < /button > = {{ $ storage.a + $ storage.b}} < /div > The Full Example code < ! DOCTYPE html > < html > < head > < script data - require = "angular.js@1.1.5" data - semver = "1.1.5"...
Angular, React, JavaScript, Java, PHP, SQL, C#, Vue, NodeJs, TypeScript and Interview Questions Answers