Skip to content

Instantly share code, notes, and snippets.

@ryandhubbard
Created August 10, 2017 00:58
Show Gist options
  • Save ryandhubbard/f9d1fc4f07878d90b34962effde5f1a8 to your computer and use it in GitHub Desktop.
Save ryandhubbard/f9d1fc4f07878d90b34962effde5f1a8 to your computer and use it in GitHub Desktop.
JS Bin // source http://jsbin.com/jaxefaf
<!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">
function multiple(n) {
function f(x) {
return x * n;
}
return f;
}
var triple = multiple(3);
var quadruple = multiple(4);
</script>
<script id="jsbin-source-javascript" type="text/javascript">function multiple(n) {
function f(x) {
return x * n;
}
return f;
}
var triple = multiple(3);
var quadruple = multiple(4);
</script></body>
</html>
function multiple(n) {
function f(x) {
return x * n;
}
return f;
}
var triple = multiple(3);
var quadruple = multiple(4);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment