Skip to content

Instantly share code, notes, and snippets.

View justin-the-developer's full-sized avatar
🎯
Focusing

Justin Lee justin-the-developer

🎯
Focusing
View GitHub Profile
We couldn’t find that file to show.
🌞 Morning 30 commits ██▊░░░░░░░░░░░░░░░░░░ 13.1%
🌆 Daytime 39 commits ███▌░░░░░░░░░░░░░░░░░ 17.0%
🌃 Evening 147 commits █████████████▍░░░░░░░ 64.2%
🌙 Night 13 commits █▏░░░░░░░░░░░░░░░░░░░ 5.7%
//Ternary Operator
//Bad Code
function getResult(score) {
let result;
if( score > 9) {
result = 'good!'
} else if (score <= 9) {
result = 'bad'
}