イオンストレージから値を取得しようとしていますが、機能の価値が上がっています。イオン性サービスのイオンストレージから値が得られない
let xyz = '';
this.storage.get('user').then(function (response) {
xyz = response.accessToken;
console.log('in',xyz);
});
console.log('out', xyz);
//I am getting the value in the console in but not getting the console out.
//I want to use that token out side of this function.How can I get this token from storage?