Skip to content

Instantly share code, notes, and snippets.

@anotherjung
Created May 28, 2015 23:37
Show Gist options
  • Save anotherjung/cbca7c01e4d82c843f3f to your computer and use it in GitHub Desktop.
Save anotherjung/cbca7c01e4d82c843f3f to your computer and use it in GitHub Desktop.
JS Bin // source http://jsbin.com/filuye
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<script id="jsbin-javascript">
for (var i=0; i<256; i++)
{
console.log(i);
}
</script>
<script id="jsbin-source-javascript" type="text/javascript">for (var i=0; i<256; i++)
{
console.log(i);
}
</script></body>
</html>
for (var i=0; i<256; i++)
{
console.log(i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment