Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript AJAX Basics (retiring) AJAX Concepts Introducing AJAX

what's the difference between ajax and angular js??

I think they are both used to asynchronously update the webpage, so what is the difference?

2 Answers

Allen-Michael Grobelny
Allen-Michael Grobelny
20,851 Points

You can think of AJAX as the ability to get data from a server without the need to refresh a webpage.

However, Angular extends this idea with two-way data binding. So the HTML elements on your front end page are in constant communication with your back end server--and vice versa. Angular can achieve other things as well and is useful for separating your concerns, i.e. separating your data, the functions performed on that data, and how the user sees the data.

ajax is where you get something from the server behind the scenes.. Angular is full blown framework that lets you do so much more..