scrimba
Clean Code
Clean Comments: Avoid Visual Markers
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 Comments: Avoid Visual Markers
AboutCommentsNotes
Clean Comments: Avoid Visual Markers
Expand for more info
index.js
run
preview
console
/****************************
* DEPENDENCIES
***************************/

/////////////////////////
// USER CLASS
/////////////////////////
class User {
/////////////////////////
// PROPERTIES
/////////////////////////
firstName;
middleName;
lastName;
}

/****************************
* ADMIN CLASS
***************************/
class AdminUser extends User {
constructor(){}
}
Console
/index.html
-2:33