Last active
December 16, 2019 01:41
-
-
Save DenisIzmaylov/270228be6908e4e7dc2a2baa33d46d32 to your computer and use it in GitHub Desktop.
Clean Code?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Bad | |
books.forEach(book => { | |
if (book[title]) { | |
if (book[author]) { | |
console.log(book) | |
} | |
} | |
}) | |
// Good | |
books.forEach(book => { | |
if (!book[title]) return | |
if (!book[author]) return | |
console.log(book) | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Bad | |
const hoursByDates = {} | |
hoursByDates['2019-12-01'] = 4 | |
// Good | |
const hoursByDate = {} | |
hoursByDate['2019-12-01'] = 4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment