Skip to content

Instantly share code, notes, and snippets.

Created July 9, 2017 22:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/e3f091dbed41da1e7de3928893e30c1d to your computer and use it in GitHub Desktop.
Save anonymous/e3f091dbed41da1e7de3928893e30c1d to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/mupupiyasa
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body id="body">
<script id="jsbin-javascript">
var b = document.getElementById("body");
function out(x)
{
b.innerHTML += x.toString() + "<br>\n";
}
out("hgffhfh");
out(956);
function apple(x,a,k,o,d,e,l,i)
{
var bucket = x+a+k+o+d+e+l+i;
return bucket;
}
var y = apple(9,5,1,4,66,91,78,1000 );
out(y);
</script>
<script id="jsbin-source-javascript" type="text/javascript">var b = document.getElementById("body");
function out(x)
{
b.innerHTML += x.toString() + "<br>\n";
}
out("hgffhfh");
out(956);
function apple(x,a,k,o,d,e,l,i)
{
var bucket = x+a+k+o+d+e+l+i;
return bucket;
}
var y = apple(9,5,1,4,66,91,78,1000 );
out(y);</script></body>
</html>
var b = document.getElementById("body");
function out(x)
{
b.innerHTML += x.toString() + "<br>\n";
}
out("hgffhfh");
out(956);
function apple(x,a,k,o,d,e,l,i)
{
var bucket = x+a+k+o+d+e+l+i;
return bucket;
}
var y = apple(9,5,1,4,66,91,78,1000 );
out(y);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment