Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/suissa/boas-praticas-de-js-da-webschool
algumas regras que adotei para meus alunos escreverem códigos melhores.
https://github.com/suissa/boas-praticas-de-js-da-webschool
Last synced: 6 days ago
JSON representation
algumas regras que adotei para meus alunos escreverem códigos melhores.
- Host: GitHub
- URL: https://github.com/suissa/boas-praticas-de-js-da-webschool
- Owner: suissa
- License: mit
- Created: 2017-04-09T02:26:34.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-04-09T02:57:53.000Z (over 7 years ago)
- Last Synced: 2024-10-30T01:47:28.548Z (about 2 months ago)
- Size: 1.95 KB
- Stars: 9
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Boas práticas de js da Webschool
Defini algumas regras simples para meus alunos escreverem códigos melhores, baseando-me em
## Regras
#### Variaveis
> SEMPRE use `const`! Só esta liberado o uso de `let` em algumas funções
> de iteraçao: `for`, `while`
## ESQUECa QUE EXISTE VaR POR FaVOR!!!!
#### Functions
> SEMPRE use *arrow function*! Só está liberado o uso de `function` quando você
precisar de `this`, de preferência nunca.```js
function acertouMizeravi () {} ✖ // zoado
const acertouMizeravi = () => {} ✓ // xuxu
```
#### Iterações
## Meu estilo pessoal