scrimba
Clean Code
Clean Comments: Avoid Visual Markers (Challenge)
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 (Challenge)
AboutCommentsNotes
Clean Comments: Avoid Visual Markers (Challenge)
Expand for more info
index.js
run
preview
console
/*
* Clean Code: Avoid Visual Markers Challenge
* 1. Clean Up the visual markers.
*/


/****************************
* DEPENDENCIES
***************************/

/////////////////////////
// PET CLASS
/////////////////////////
class Pet {
/////////////////////////
// PROPERTIES
/////////////////////////
name;
age;
totalLegs;
}

/****************************
* DOG CLASS
***************************/
class Dog extends Pet {
constructor(){}
}

// TODO: Clean Up this files
Console
/index.html
-1:26