Skip to content

Instantly share code, notes, and snippets.

@caitfriedlander
Created May 29, 2018 23:59
Show Gist options
  • Save caitfriedlander/7112a1fbf1b0591faa86e09cdf51ea21 to your computer and use it in GitHub Desktop.
Save caitfriedlander/7112a1fbf1b0591faa86e09cdf51ea21 to your computer and use it in GitHub Desktop.
JS Bin // source http://jsbin.com/wosibov
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<script id="jsbin-javascript">
var pet = {
name: "Rover",
species: "Dog",
favoriteToy: "tennis ball",
age: 5
};
</script>
<script id="jsbin-source-javascript" type="text/javascript">var pet = {
name: "Rover",
species: "Dog",
favoriteToy: "tennis ball",
age: 5
};
</script></body>
</html>
var pet = {
name: "Rover",
species: "Dog",
favoriteToy: "tennis ball",
age: 5
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment