React Native AsyncStorage getItem returns promise not value
using Async/Await :
async _getStorageValue(){
var value = await AsyncStorage.getItem('ITEM_NAME')
return value
}
You have to call as
getUserToken().then(res => {
console.log(res);
});
Since this is an async call.