localforage

Solutions on MaxInterview for localforage by the best coders in the world

showing results for - "localforage"
Yannic
19 Aug 2019
1// Save our users.
2var users = [ {id: 1, fullName: 'Matt'}, {id: 2, fullName: 'Bob'} ];
3localForage.setItem('users', users, function(result) {
4    console.log(result);
5});
6
Leo
13 Feb 2018
1localforage.removeItem(key, callback);