Sign in
Log inSign up
Zack Sheppard

92 likes

·

3.0K reads

9 comments

Joseph James
Joseph James
Aug 17, 2021

Very interesting , good job, and thanks for sharing such a good blog.

1
·
Benjamin Kalungi
Benjamin Kalungi
Aug 17, 2021

The is really comprehensive, thanks for creating

1
·
Anand Baraik
Anand Baraik
Aug 18, 2021

A good read!

1
·
Kingsley Ubah
Kingsley Ubah
Aug 18, 2021

Amazing work with the explanation, Jack!

I enjoyed reading this!

1
·
Rehan Sattar
Rehan Sattar
Aug 18, 2021

Thanks for sharing! A good read 🚀

1
·
Saif Uddin
Saif Uddin
Aug 18, 2021

Nice one, Really Impressive. I had some lacking of understand the promise and async, which is clear now.

1
·
Maxi Contieri⭐⭐⭐
Maxi Contieri⭐⭐⭐
Aug 18, 2021

Great Article !

Clear examples and very good title!

1
·
Nathan Vu
Nathan Vu
Aug 24, 2021

Hey Zack, great article and very informative. Just out of curiosity, is learning ajax still needed when jumping into frameworks like react or angular? I thought ajax was a type of method call or even library as a way of getting data into your front-end app.

·
·1 reply
Zack Sheppard
Zack Sheppard
Author
·Aug 27, 2021

Hey Nathan - AJAX (Async Javascript And XML) was a method of getting data onto a website without having to reload the page. Basically it was the beginning of modern frameworks, back when it was a brand new idea to have JS call your server and then render the new content itself. (JQuery also confused this a bit by making the $.ajax function, which was a fetch helper.)

So yeah, in general AJAX was just an acronym for the idea of "use Javascript to load XML and use that to make rendering decisions". So basically what we do still, only now we use fetch or axios to make the call and often use JSON instead of XML.

·