console.log(dataJson);
It gives the result: {"UserChannelId":"cb4a62ba4af3ab722b599b270","title":"test"}
and for some reason, this: console.log(dataJson.UserChannelId);
gives the result: undefined
What could be the problem?
console.log(dataJson);
It gives the result: {"UserChannelId":"cb4a62ba4af3ab722b599b270","title":"test"}
and for some reason, this: console.log(dataJson.UserChannelId);
gives the result: undefined
What could be the problem?
Source: https://ru.stackoverflow.com/questions/276989/
All Articles
console.log(typeof dataJson)
- Yura Ivanov