Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Maintainable JavaScript

Maintainable JavaScript

Talk about the good scalability and good practices javascript. Based on a previous lectures of Nicholas C. Zákas (@slicknet) and some concepts developed by Uncle Bob.

Local: Curto Café • Centro, Rio de Janeiro - RJ

Raphael Amorim

March 20, 2015
Tweet

More Decks by Raphael Amorim

Other Decks in Technology

Transcript

  1. BAD

  2. NAMING • USE NOMES LÓGICOS PARA VARIÁVEIS E FUNÇÕES -

    NÃO SE PREOCUPE COM O TAMANHO ! • NOMES DE FUNÇÕES COMEÇANDO SEMPRE COM VERBO ! Ex: getCoffee() • FUNÇÕES DE RETORNO BOOLEANO DEVEM SEMPRE COMEÇAR COM “IS” OU “HAS” Ex: hasItem() ou isValid()