scrimba
Clean Code
Avoiding Comments with Git
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

Avoiding Comments with Git
AboutCommentsNotes
Avoiding Comments with Git
Expand for more info
index.js
run
preview
console
// version control / log comments

/**
* 2018-07-04 Removed Character Limit - Dylan Israel
*/

// remove commented code
function getUserName(firstName, middleName, lastName) {
// const initials = `${firstName[0]}{MidName[0]}${lastName[0]};
return `${firstName} ${middleName} ${lastName}`;
}
Console
/index.html
-1:30