What is the difference between $cookiestore
and $cookies
in angularjs.
I saw the angularjs
document.
$cookiestore and $cookies are doing same think, but the only difference is
$cookiestore- can objects put or retrieved from this storage are automatically serialized or deserialized by angular's toJson/fromJson .but $cookies- can't do this
Is the only one difference? or anything else?