Open
Description
Learn with Jquery how to use the vanilla javascript
Bad:
var a = document.getElementById("a")
var b = document.getElementById("b")
var c = document.getElementsByClassName("c")
var d = document.getElementsByTagName("body")[0]
Good:
const $ = (v) => document.querySelector(v)
let a = $("#a")
let b = $("#b")
let c = $(".c")
let d = $("body")
Stop repeating console.log
Bad:
console.log(a)
console.log(b)
console.log(c)
console.log(d)
Good:
const log = (v) => console.log(v)
log(a)
log(b)
log(c)
log(d)
Sugeri estas ideias no repositório inglês, mas não aceitaram.
Se quiser adicionar apenas na versão português...
Opinião do bot gringo:
- Hey there! I only want to add subsections that have a corresponding one in the book Clean Code. I don't think this one does.
Minha opinião:
- Is the goal to write cleaner code, or philosophize about the book?
Metadata
Metadata
Assignees
Labels
No labels