3

I have one question about JS and AngularJS. I have written an application in JS and JQ and I'm wondering how difficult it would be to remake it in AngularJS. I am asking because I've never worked with Angular.

dda
  • 6,030
  • 2
  • 25
  • 34
Mat.Now
  • 1,715
  • 3
  • 16
  • 31

3 Answers3

1

I suggest you to start with some tutorials (codescool offer the best one in my opinion)

Then google is my encyclopedia about single cases. If you post some case probably we can help you but your question is too general to have an answer

Tonino
  • 1,137
  • 10
  • 25
1

Angular1 is noting but organised JS, where you have controllers and related views and it can be totally written in the plain JS, you would however need to understand angular format of writing controllers.

Angular2 on the other hand should be written using typescript

Mitesh Pant
  • 524
  • 2
  • 15
1

Starts with some basic AngularJS tutorials like AngularJS Guide, get ramp-up on it and then starts desinging app in Architectural way in terms of Angular (MVC).

AngularJs provides MVC paltform where you can separate your Model, Views and Controller, so all your js related code goes in controller(Business logic) and model will be used in Views for data binding.

Harshal Yelpale
  • 535
  • 3
  • 21