Last active
April 21, 2016 18:34
-
-
Save kopasetik/b7a777bccc0f54e38fc58a32000e46c3 to your computer and use it in GitHub Desktop.
PT 1 - April 2016 Sample Teach pt 1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function joinWordsWithAnd(string1, string2){ | |
return string1 + ' and ' + string2; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
give5(true) === 5; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function answerTrue(question){ | |
return true; | |
} | |
var theAnswer = answerTruthfully('Am I the fairest of them all?'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment