Created
December 20, 2010 21:17
-
-
Save jchris/749006 to your computer and use it in GitHub Desktop.
teaching amysue javascript
This file contains hidden or 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
rainPain = function(temp, cip) { | |
if (temp < 39) { | |
console.log ("too cold!") | |
} else if (temp<80 && cip){ | |
console.log("ouch") | |
} else { | |
console.log("time to walk the dogs") | |
} | |
} | |
rainPain(75, true) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment