現在主要的 Style guide 有 StandardJS, Airbnb, Google 三家
我自己雖然偏好 Standard 但現在也轉向其它兩家 (懶得加分號啊~)
這裡列出 Google Style Guide 的一些特色
- 使用兩個空白 (別用四個空白或 tab)。
- 請記得加入分號。
- 先別用 ES6 module export,因為語意尚未完全定義。
- 別使用 var,改使用 let, const。
- 盡可能使用 arrow function。
- 使用 template String,並且大括號內部變數不需要額外空白如: `${variable}`。
- const 所宣告的變數使用全大寫。
- 字串使用單引號。
介紹: https://goo.gl/5RufGG
Google JavaScript Style Guide:
https://google.github.io/styleguide/jsguide.html
Search
es6 module 在 A Comprehensive Look at ES6 Modules - JavaScript Tutorial 的美食出口停車場
An ES6 module is a JavaScript file that executes in strict mode only. It means that any variables or functions declared in the module won't be added ... ... <看更多>