aizatto.com
Ctrlk
  • aizatto.com
  • Table of Contents
  • Portfolio, Projects, Tools, Toys
  • Interview Guide
  • Engineering Code
  • Engineering Management
  • Why GitBook?
  • Getting into Tech
  • Personal Goals
  • Daily Drivers
  • Contacting Me
  • Notes
    • JavaScript
      • Array
      • Async & Await / Promises
      • Booleans
      • Collections
      • Cons/Dislikes
      • fetch
      • Map
      • Modules
      • Object
      • Regex
      • Set
      • Style Guides
      • Versions
    • Node.js
    • Technical Due Diligence
    • Archive
  • More on Notion
Powered by GitBook
On this page
  1. Notes
  2. JavaScript

Style Guides

  • http://jscs.info

  • http://eslint.org

  • https://github.com/rwaldron/idiomatic.js

  • https://contribute.jquery.org/style-guide/js/

  • https://google.github.io/styleguide/jsguide.html

  • https://github.com/airbnb/javascript

  • https://developer.mozilla.org/en-US/docs/Mozilla/Developer_guide/Coding_Style#JavaScript_objects

  • http://standardjs.com/

Personal Opinion

Google

AirBNB

jQuery

Standard

Semicolons

Required

Required

Required

Required

Not Required

import/export

DO NOT USE

Use

require()

Custom Solution

DO NOT USE

Trailing Commas

Required

Required

Required

camelCase

parameter names, local variables

objects, functions, instances, local variables

blank

objects, functions, instances

PreviousSetNextVersions

Last updated 6 years ago

Was this helpful?

Was this helpful?