Skip to content

Instantly share code, notes, and snippets.

View johnfkneafsey's full-sized avatar

John F Kneafsey johnfkneafsey

View GitHub Profile
@johnfkneafsey
johnfkneafsey / Number Drills
Created November 22, 2016 00:40
Number Drills
function computeArea(width, height) {
return width * height;
}
/* From here down, you are not expected to
understand.... for now :)
Nothing to see here!
@johnfkneafsey
johnfkneafsey / String Drills
Last active November 22, 2016 00:29
String Drills
function wisePerson(wiseType, whatToSay) {
return 'A wise ' + wiseType + ' once said: "' + whatToSay + '".';
}
/* From here down, you are not expected to
understand.... for now :)
Nothing to see here!
@johnfkneafsey
johnfkneafsey / Wiseperson
Created November 22, 2016 00:23
Wiseperson
function wisePerson(wiseType, whatToSay) {
return 'A wise ' + wiseType + ' once said: "' + whatToSay + '".';
}
/* From here down, you are not expected to
understand.... for now :)
Nothing to see here!