JavaScript Coding Convention
Goal
A convention to standardize JavaScript coding style.
Intro
We are not reinventing the wheels. We adopt from AirBnB JavaScript Style Guide and adjust accordingly to our preferences.
In this document, we will rewrite the selected specification we adopt and add a few of our preferences. For anything that is not stated in this document, refer to AirBnB JavaScript Style Guide.
References
2.1 Use
const
for all of your references; avoid usingvar
. eslint:prefer-const
,no-const-assign
Why? This ensures that you can’t reassign your references, which can lead to bugs and difficult to comprehend code.
2.2 If you must reassign references, use
let
instead ofvar
. eslint:no-var
Why?
let
is block-scoped rather than function-scoped likevar
.
Objects
3.1 Use the literal syntax for object creation. eslint:
no-new-object
3.3 Use object method shorthand. eslint:
object-shorthand
To be continued. More to come
Last updated
Was this helpful?