Skip to content

Instantly share code, notes, and snippets.

@stormsweeper
Created November 25, 2014 20:10
Show Gist options
  • Save stormsweeper/7f2ec141141fb7ad66a9 to your computer and use it in GitHub Desktop.
Save stormsweeper/7f2ec141141fb7ad66a9 to your computer and use it in GitHub Desktop.
<!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>
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