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
I recently ran into some issues this week on a web app that I built and I realized that I didn't have a good process in place for handling errors. What are some good resources on the subject? I'm talking links, books, videos, slides, whatever.
This are a some of good articles:
The art of throwing JavaScript errors
A chapter from Eloquent JavaScript Book
Related
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 3 days ago.
Improve this question
Give some tips and tricks to learn the Javascript I know the little bit of how things work also know the basic knowledge of HTML and CSS
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.
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
What are some good practices that can be followed while creating angularjs directives?
consider:
size of the link function
what to do/what not to do in link function
use of scope.$apply
I suggest you read the angular style guide.
You'll find all the best practices regarding all the different angular components.
https://github.com/johnpapa/angular-styleguide/blob/master/a1/README.md#directives
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
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
This code snippet is from a teammate of mine, his title is "Full Stack Developer". He mostly writes PHP. I found this code at the end of a .php file and asked him to move it to a separate .js file for testability, maintainability... just some best practices.
He denied, he actually said this code is "extremely simple" and refactoring just makes it more complicated without any benefits. He talked about KISS, about performance...
Just tell him story about Spaghetti code, design patterns, etc. and then fire him.