AngularJS Another bunch of JavaScript files which will help you manage your web applications. You have your HTML and CSS. The content of the HTML changes. Separate the HTML from the data that changes, this is know as View (HTML) and Model (data). AngularJS has been updated and is now known as Angular. AngularJS is older and has versions starting with 1.X. Angular versions start with 2.X. https://toddmotto.com/ultimate-guide-to-learning-angular-js-in-one-day/#terminology AngularJS is similar to others like KnockoutJS. When developing with Angular define you HTML/Views. Then create Javascript files and Bind the JavaScript properties and functions within the HTML using the AngularJS directives. AngularJS is a bunch of JavaScript files, it is served up to the Client/Browser in total i.e. none of the AngularJS runs on the Server, the Browser gets all of the JavaScript, HTML and CSS and runs the whole thing.
Layman explanations of Software coding and configuration techniques. With example code where possible.