Amazing! Just what I needed and explained so well, thank you!
@anthony4522 ай бұрын
@5:04 alt+[up arrow] Move lines without copying. Thanks for the tutorial!
@KT-ut9zg2 жыл бұрын
Fantastic! Simply explained and very straightforward. Thanks!
@Draxen2 жыл бұрын
Yo! Holla from Perth WA! Your accent sounds like you’re from NZ! 🤙 Awesome tutorial 👏 keep up the awesome work
@MissCoding2 жыл бұрын
Thanks Jordy! Yes I'm from Auckland, NZ :)
@Draxen2 жыл бұрын
@@MissCoding Epiccc! Hope it's not too chilli over there atm! Pretty cold here in WA haha
@faizmasroor2 жыл бұрын
thanks and love from pakistani mobile app developer .
@jobarmure6169 Жыл бұрын
Thx very much for the explanation, very easy to understand
@lylemccalmont4771 Жыл бұрын
Thank you for this @MissCoding - excellent tutorial for simple API connectivity. I get the same error "undefined is not an object (evaluating 'response["bpi"]') If I remove the line return Bitcoin (GBP): {response["bpi"]["GBP"].rate}; and readd it it works first time but then fails every time after. Any idea what the issue is @MissCoding?
@benjaminflor23552 жыл бұрын
so good teacher
@kashif23092 жыл бұрын
I'm getting an error saying "undefined is not an object (evaluating 'response["bpi"]')
@anilokcuoglu2 жыл бұрын
i get the same error can you handled this ?
@christopherquarshie8258 Жыл бұрын
Same error any solution?
@mehdimv4808 Жыл бұрын
@@christopherquarshie8258 First cut the "return Bitcoin (USD): {response["bpi"]["USD"].rate};return Bitcoin (USD): {response["bpi"]["USD"].rate};" and save so the app runs successfully one time, then paste it and save again and it works for some reason!
@carlosarangovelasquez71014 ай бұрын
const getContent = () => { if (isLoading) { return ; } if (error) { return {error}; } // Check if response.bpi exists before accessing USD if (!response.bpi || !response.bpi.USD) { return Error: Data unavailable; } return Bitcoin (USD): {response.bpi.USD.rate}; };
@danyspb9349 Жыл бұрын
thank you so much it easy to understand
@rkshanigaming34342 жыл бұрын
Lovely its really helpfull for me...❤❤
@MissCoding2 жыл бұрын
Thank you! If you want to see how to make different types of api requests eg put, post and delete… I have recently uploaded a video covering these!