Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Prerequisite for learning Angular [closed]

Tags:

angularjs

I need to learn Angular for working on a project. I am a backend Java/Spring developer I have knowledge of HTML and Javascript. I have also worked on basic Knockout.js.

What are the prerequisite for learning Angular ?

like image 631
unnik Avatar asked Aug 05 '16 06:08

unnik


People also ask

Can I learn Angular without knowing TypeScript?

You can learn angular without having knowledge of typescript but you have to go through all core concept of JavaScript. Most of the JavaScript operators are exact same in angular so you must dig into JavaScript concept before learning any node environment framework like express. js , Reactjs ,Vuejs or Angular itself.

Can I learn Angular in 3 days?

It's just 3-courses you can take to learn Angular in 3-days or over a weekend. If you have no idea about Angular but you want to learn it to start your web development career then this should be the first course you should join.

Can I learn Angular without knowing JavaScript?

Using Angular effectively requires that you understand the fundamentals of JavaScript. What's more, the value you derive from Angular will be proportional to how adept you are at JavaScript. I don't recommend learning Angular without at least a basic understanding of JavaScript.


1 Answers

Moderate knowledge of HTML, CSS, and JavaScript.

Basic Model-View-Controller (MVC) concepts.

The Document Object Model (DOM).

JavaScript functions, events, and error handling.

HTML : Most of the templates we create in angularJS is in the form of handcrafted htmls. i.e. So you must know that what are forms in html and what are tags ng-form etc.

CSS : While hand crafting template you should require css to make more attractive UI design.

DOM : Document object model and how document is created. If you have good jquery background you can easily pick up this part.

Object Oriented JavaScript: Global name space: AngularJS heavily uses javascript name space. i.e.

Object Oriented JavaScript: Inheritance: Inheritance is very important concept in JavaScript. Inheritance is heavily used in all the frameworks in JavaScript. i.e.

var Employee = function(fname) {
   this.fname =fname;
   console.log("Your first name is "+fname);
} 
var fistEmployee = new Employee("John");

var secondEmployee = new Employee("Jim");

fistEmployee.prototype.lastname = function(lname) {
      this.lname=lname;
      console.log("Your last name is "+lname);
}

So using prototype you can easily add properties on the fly.

Model View Whatever(MVW): This term is used heavily by all AngularJS developers. It is coined by Google. It is simple MVC concept.

Separation of Concern(SOC): SOC concept is heavily used in AngularJS. In angularJS all the controllers, directive, services and factories are made for SOC. It provide more lean and cleaner code. Also re usability automatically increases if you use SOC concept.

Promises : Promises are nothing but callbacks. When you call any AngularJS service it will be called asynchronously. When response is send from service callback hold the response and do the needful.

Test Driven Development : Best thing about AngularJS is you can easily write test script so that when you go home, you can easily have sound sleep.

like image 188
parthas j Avatar answered Oct 07 '22 06:10

parthas j