scrimba
Clean Code
Clean Variables Part 2
Go Pro!

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

AboutCommentsNotes
Clean Variables Part 2
Expand for more info
language-standards.js
run
preview
console
function factorialize(num) {
let COUNT = num;

if (COUNT === 0) {
return 1;
}

for (let i = 1; i < COUNT; i++) {
num = num * i;
}

return num;
}
Console
/index.html
-3:19