My issue is related to the code snippet below:
this.storage.get('user')
Upon execution, it returns the following object:
t {__zone_symbol__state: null, __zone_symbol__value: Array(0)}
I am uncertain about how to handle this object.
Is there a method to retrieve a string value from my storage?
// Storing user ID in the storage
this.storage.set("user", JSON.stringify(userID));
console.log(this.storage.get('user'))//output 100 for example