Skip to content

Instantly share code, notes, and snippets.

View Manny1806's full-sized avatar

Manny1806

  • PlusQA
  • Portland
View GitHub Profile
https://repl.it/@manny1806/Creating-arrays-drill
https://repl.it/@manny1806/Adding-array-items-drills
https://repl.it/@manny1806/Accessing-array-items-drill
https://repl.it/@manny1806/Array-length-and-access-drill
https://repl.it/@manny1806/Traffic-lights-drill
https://repl.it/@manny1806/Error-alert-drill
function computeArea(width, height) {
return width * height;
}
/* From here down, you are not expected to
understand.... for now :)
Nothing to see here!
function shouter(whatToShout) {
const shoutWords = whatToShout ;
return shoutWords.toUpperCase() + '!!!';
}
/* From here down, you are not expected to
understand.... for now :)
Nothing to see here!