Created
November 25, 2014 20:10
-
-
Save stormsweeper/7f2ec141141fb7ad66a9 to your computer and use it in GitHub Desktop.
// source http://jsbin.com/wapuqikonu
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<script id="jsbin-javascript"> | |
var animal = ""; | |
var articleOfClothing = ""; | |
var locationOrEvent = ""; | |
var madLib = "The " + animal + " wore the " + articleOfClothing + " to the " + locationOrEvent + "."; | |
console.log(madLib); | |
</script> | |
<script id="jsbin-source-javascript" type="text/javascript">var animal = ""; | |
var articleOfClothing = ""; | |
var locationOrEvent = ""; | |
var madLib = "The " + animal + " wore the " + articleOfClothing + " to the " + locationOrEvent + "."; | |
console.log(madLib);</script></body> | |
</html> |
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
var animal = ""; | |
var articleOfClothing = ""; | |
var locationOrEvent = ""; | |
var madLib = "The " + animal + " wore the " + articleOfClothing + " to the " + locationOrEvent + "."; | |
console.log(madLib); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment