Home

Awesome

Original Repository: airbnb/javascript

Airbnb JavaScript Style Guide() {

Ein vernünftiger Ansatz für einen JavaScript-Style-Guide

<a name='TOC'>Inhaltsverzeichnis</a>

  1. Datentypen
  2. Objekte
  3. Arrays
  4. Zeichenketten
  5. Funktionen
  6. Eigenschaften
  7. Variablen
  8. Hoisting
  9. Bedingungen und Gleichheit
  10. Blöcke
  11. Kommentare
  12. Whitespace
  13. Führende Kommas
  14. Semikolons
  15. Typumwandlung
  16. Namenskonventionen
  17. Zugriffsmethoden
  18. Konstruktoren
  19. Events
  20. Module
  21. jQuery
  22. ES5 Kompatibilität
  23. Testing
  24. Performance
  25. Ressourcen
  26. In the Wild
  27. Übersetzungen
  28. The JavaScript Style Guide Guide
  29. Contributors
  30. Lizenz

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

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

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

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

<a name='functions'>Funktionen</a>

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

<a name='variables'>Variablen</a>

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

<a name='conditionals'>Bedingungen und Gleichheit</a>

<a name='blocks'>Blöcke</a>

<a name='comments'>Kommentare</a>

<a name='whitespace'>Whitespace</a>

<a name='leading-commas'>Führende Kommas</a>

<a name='semicolons'>Semikolons</a>

<a name='type-coercion'>Typumwandlung</a>

<a name='naming-conventions'>Namenskonventionen</a>

<a name='accessors'>Zugriffsmethoden</a>

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

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

<a name='modules'>Module</a>

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

<a name='es5'>ECMAScript 5 Kompatibilität</a>

[⬆]

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

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

[⬆]

<a name='resources'>Ressourcen</a>

Lese dieses

Andere Styleguides

Andere Styles

Bücher

Blogs

[⬆]

<a name='in-the-wild'>In the Wild</a>

Dies ist eine Liste von Organisationen, welche diesen Style Guide benutzen. Sende uns einen Pull request oder öffne einen issue und wir werden dich der Liste hinzufügen.

[⬆]

<a name='translation'>Übersetzungen</a>

Dieser Styleguide ist in den folgenden Sprachen erhältlich:

[⬆]

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

[⬆]

<a name='authors'>Contributors</a>

[⬆]

<a name='license'>Lizenz</a>

(The MIT License)

Copyright (c) 2012 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.

[⬆]

};