Skip to content

Instantly share code, notes, and snippets.

@xjinza
Created November 28, 2016 09:13
Show Gist options
  • Save xjinza/7f222a5c168f6da603a97a96bb1b7de1 to your computer and use it in GitHub Desktop.
Save xjinza/7f222a5c168f6da603a97a96bb1b7de1 to your computer and use it in GitHub Desktop.
angular set cookies expired
var expireDate = new Date();
expireDate.setDate(expireDate.getDate() + 1);
$cookies.put('myFavorite', 'oatmeal', {'expires': expireDate});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment