scrimba
Clean Code
Clean Functions: Limit Parameters
Go Pro!Bootcamp

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

Clean Functions: Limit Parameters
AboutCommentsNotes
Clean Functions: Limit Parameters
Expand for more info
index.js
run
preview
console
//  Limit Params - BAD
function getUsersFullName(first, middle, last, nickName) {
return `${first} ${middle} ${last} - AKA: ${nickName}`
}

// Limit Params - GOOD
Console
/index.html
-1:33