Do I need to learn OOP before learn Angular JS? [closed] - javascript

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 years ago.
Improve this question
I have good knowledge of HTML CSS Bootstrap and Basic knowledge of Javascript & Jquery so do I need to clear all Object oriented programming before jump on Angular?

Yes you should, but not just because of angular. For complex applications an Object oriented Structure is always a good decision, because it will help you to represent an subset of the reality in your application

Related

With what to start when creating a cross-platform app? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 2 years ago.
Improve this question
So I have a well-planned idea for an app, and I want to implement it in the next year.
I did my research and decided to learn JS ,CSS and HTML using NATIVE REACT and FIREBASE.
My question is, where do I start?
Should I first learn HTML?JS?CSS? or maybe all together is the same time? maybe focusing on something else which will provide strong foundations? what will speed up the learning curve?
( P.s - I'm a second year student in software Engineering, so learning new skills & technologies is quite familiar. )
HTML, CSS and JavaScript in this order is a good choice.
They will all be useful in future, and rely on each other.

Using jQuery to manipulate entire HTML DOM [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 5 years ago.
Improve this question
Is this a good practice? I mean is it good if all of my codes(behavior,presentation,structure) are inside on my .js(for example, since I'm making a website) file? Why? Sorry for my bad english.
Obviously it is not good practice, the recommended practice is to split all the code into its designated file. The simplest method is to use multiple script tags with src.
If you're really interested in dividing up your code efficiently, I would suggest learning BoostrapJS or AngularJS.

what coding format and standard should be followed while writing javascript library [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 6 years ago.
Improve this question
I am working to build my own custom UI library providing a feature like customized form elements, cards, tabular view and much more, most of the feature is inherited from bootstrap. there is a lot of javascript code and I am looking for proper standard and format to be followed while writing any javascript library to make the code manageable and can be reused.

Is angular.js considered too large for simpler use cases [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
Would angular.js be considered too large to use for simpler use cases, for example just for a certain
portion of a web page which is not a SPA ?
I would say yes. For small tasks like you describe here, I prefer to use simpler two-way-binding-frameworks such as KnockoueJS. It is super easy and you can achieve quite a lot of cool funtionality.
The answer of your question is yes and it is discussed in the AngularJS documentation.

JavaScript Framework Order? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
First post on this site, so bear with me.
I got a decent handle on jQuery, but then I tried to jump to Backbone.js and it was a little bit over my head. And I decided that I want to ease my way into it by slowly working up.
What order did YOU learn the Frameworks in?
Before learning jQuery, you can check these W3Schools tutorials:
http://www.w3schools.com/jquery/default.asp
http://www.w3schools.com/js/
A good resource for learning jQuery is on the jQuery Learning Center site: http://learn.jquery.com/. Especially, I would recommend you the JavaScript 101 Chapter for the beginning: http://learn.jquery.com/javascript-101/

Categories