Skip to content

Instantly share code, notes, and snippets.

View punkrocker178's full-sized avatar
🎯
Focusing on angular4reddit.me

Hieu punkrocker178

🎯
Focusing on angular4reddit.me
  • Ho Chi Minh City
View GitHub Profile
@punkrocker178
punkrocker178 / numberDrills.js
Created August 18, 2018 07:18
Thinkful Unit 2 Lesson 2 Number drills
/*------------------------------Drill 1----------------------------*/
function computeArea(width, height) {
// your code here
return width*height;
}
/* From here down, you are not expected to
understand.... for now :)
@punkrocker178
punkrocker178 / drills.js
Created August 18, 2018 07:07
Thinkful Unit 2 Lesson 2 Jaavascript drills
/*-----------------------Drill 1----------------------*/
function wisePerson(wiseType, whatToSay) {
// your code here
var a = "A wise "+wiseType+" once said: \""+whatToSay+
"\".";
return a;
}
/* From here down, you are not expected to