Home

Awesome

Gitter

Airbnb JavaScript Style Guide() {

Uma boa abordagem para JavaScript

<a name='table-of-contents'>Índice</a>

  1. Tipos
  2. Objetos
  3. Arrays
  4. Strings
  5. Funções
  6. Propriedades
  7. Variáveis
  8. Hoisting
  9. Expressões Condicionais & Comparações
  10. Blocos
  11. Comentários
  12. Espaços em branco
  13. Vírgulas
  14. Ponto e vírgulas
  15. Casting & Coerção de Tipos
  16. Convenções de nomenclatura
  17. Métodos Acessores
  18. Construtores
  19. Eventos
  20. Módulos
  21. jQuery
  22. Compatibilidade ECMAScript 5
  23. Testes
  24. Performance
  25. Recursos
  26. Empresas utilizando
  27. Traduções
  28. The JavaScript Style Guide Guide
  29. Converse conosco sobre Javascript
  30. Contribuidores
  31. Licença

<a name='types'>Tipos</a>

⬆ voltar ao topo

<a name='objects'>Objetos</a>

⬆ voltar ao topo

<a name='arrays'>Arrays</a>

⬆ voltar ao topo

<a name='strings'>Strings</a>

⬆ voltar ao topo

<a name='functions'>Funções</a>

⬆ voltar ao topo

<a name='properties'>Properties</a>

⬆ voltar ao topo

<a name='variables'>Variáveis</a>

⬆ voltar ao topo

<a name='hoisting'>Hoisting</a>

⬆ voltar ao topo

<a name='comparison-operators--equality'>Expressões Condicionais & Comparações</a>

⬆ voltar ao topo

<a name='blocks'>Blocos</a>

⬆ voltar ao topo

<a name='comments'>Comentários</a>

⬆ voltar ao topo

<a name='whitespace'>Espaços em branco</a>

⬆ voltar ao topo

<a name='commas'>Vírgulas</a>

Edition 5 clarifies the fact that a trailing comma at the end of an ArrayInitialiser does not add to the length of the array. This is not a semantic change from Edition 3 but some implementations may have previously misinterpreted this.

```javascript
// ruim
var hero = {
  firstName: 'Kevin',
  lastName: 'Flynn',
};

var heroes = [
  'Batman',
  'Superman',
];

// bom
var hero = {
  firstName: 'Kevin',
  lastName: 'Flynn'
};

var heroes = [
  'Batman',
  'Superman'
];
```

⬆ voltar ao topo

<a name='semicolons'>Ponto e vírgula</a>

⬆ voltar ao topo

<a name='type-casting--coercion'>Casting & Coerção de tipos</a>

⬆ voltar ao topo

<a name='naming-conventions'>Convenções de nomenclatura</a>

⬆ voltar ao topo

<a name='accessors'>Métodos Acessores</a>

⬆ voltar ao topo

<a name='constructors'>Construtores</a>

⬆ voltar ao topo

<a name='events'>Eventos</a>

⬆ voltar ao topo

<a name='modules'>Módulos</a>

⬆ voltar ao topo

<a name='jquery'>jQuery</a>

⬆ voltar ao topo

<a name='ecmascript-5-compatibility'>Compatibilidade ECMAScript 5</a>

⬆ voltar ao topo

<a name='testing'>Testes</a>

⬆ voltar ao topo

<a name='performance'>Performance</a>

⬆ voltar ao topo

<a name='resources'>Conteúdo</a>

Leia isso

Ferramentas

Outros guias de estilo

Outros estilos

Outras Leituras

Livros

Blogs

Podcasts

⬆ voltar ao topo

<a name='in-the-wild'>Empresas utilizando</a>

Essa é a lista de organizações que estão utilizando esse guia de estilo. Mande-nos um pull request ou abra um apontamento para adicionarmos você na lista.

<a name='translation'>Traduções</a>

Este style guide está disponível em outros idiomas:

<a name='guide-guide'>The JavaScript Style Guide Guide</a>

Chat With Us About JavaScript

<a name='contributors'>Contribuidores</a>

<a name='license'>Licença</a>

(The MIT License)

Copyright (c) 2014 Airbnb

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

⬆ voltar ao topo

};