I am new to AngularJS. I have a bit difficulty in clearing my localStorage items. I tried clearing using localStorage.clear() or by using return localStorage = null, Still it is not getting cleared. Here is my sample code for signout.
$rootScope.signout = function() {
localStorage.clear();
$http.get('auth/signout');
$location.path('/auth/login');
};