Skip to content

Instantly share code, notes, and snippets.

View goblincore's full-sized avatar
🐌
turtle

Donny goblincore

🐌
turtle
View GitHub Profile
@goblincore
goblincore / JS number drills
Created April 6, 2018 13:25
JS number drills thinkful
https://repl.it/@keithnull/area-of-a-rectangle-drill
function computeArea(width, height) {
// your code here
return width*height;
}
https://repl.it/@keithnull/temperature-conversion-drill
@goblincore
goblincore / gist:13d931e85028e5ffa49470fda08dd1d7
Last active April 6, 2018 13:11
Javascript String Drills
https://repl.it/@keithnull/Wiseperson-generator-drill-1
function wisePerson(wiseType, whatToSay) {
const wiseDom =`A wise ${wiseType} once said: "${whatToSay}".`;
return wiseDom
}
https://repl.it/@keithnull/shouter-drill