Saving a value to Angular $cookie
When setting an non string datatype to $cookie, you will find that it doesn't get saved. Convert your data to a string and then you will notice $cookie storing correctly again.
//--wont work
$cookie.favNumber=1
//--will work
$cookie.favNumber=''+1;
//--retrieval is simple as
var favNumber=parseInt($cookie.favNumber);Written by Michael Watson
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
 #Javascript 
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#

 
 
 
