Skip to content

Instantly share code, notes, and snippets.

@thenm
Created May 15, 2017 09:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thenm/c5f470503c3b428a2514d1489f04281f to your computer and use it in GitHub Desktop.
Save thenm/c5f470503c3b428a2514d1489f04281f to your computer and use it in GitHub Desktop.
JS Bin // source http://jsbin.com/zeyubor
<!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 myfunction = function add(a, b, callback) {
var sum = a + b;
console.log(sum);
callback();
}
function logger() {
console.log('done');
}
myfunction(2, 3, logger);
console.log(myfunction);
</script>
<script id="jsbin-source-javascript" type="text/javascript">var myfunction = function add(a, b, callback) {
var sum = a + b;
console.log(sum);
callback();
}
function logger() {
console.log('done');
}
myfunction(2, 3, logger);
console.log(myfunction);
</script></body>
</html>
var myfunction = function add(a, b, callback) {
var sum = a + b;
console.log(sum);
callback();
}
function logger() {
console.log('done');
}
myfunction(2, 3, logger);
console.log(myfunction);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment