Importance of use style guide as a developer !
As a javascript developer I think you should maintain consistency style guide into your codebase. For example, you can have a look at the JavaScript style guides at #Google and #airbnb , or the style guide for the #jQuery source code. I think it should share on my perspectives.
Advantages of use proper style guide:
Style guides provide three benefits that make development more efficient:
1. Code that’s easier to read
2. Clear guidelines when writing code
3. Predictable file and variable names
When writing code, style guides reduce the number of choices a developer has to make. This allows them to focus on the program’s logic instead of making style decisions Style guides ensure consistency and predictability across your project.
Style guide website link:
1. https://airbnb.io/javascript/
2. https://www.codereadability.com/why-use-a-style-guide/
3.https://contribute.jquery.org/style-guide/js/
Happy coding :)