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.
3 Answers
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
3 Comments
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.