Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.rawgit.com/zloirock/core-js/master/client/shim.min.js"></script>
<script src="https://wzrd.in/standalone/tape@latest"></script>
  <script src="https://wzrd.in/standalone/tap-browser-color@latest"></script>
<script src="//fb.me/react-with-addons-0.14.3.js"></script>
<script src="//fb.me/react-dom-0.14.3.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <script>
    window.test = tape;
    tapBrowserColor();
  </script>
</body>
</html>
 
// secret(msg: String) => getSecret() => msg: String
const secret = (msg) => () => msg;
test('secret', assert => {
  const msg = 'secret() should return a function that returns the passed secret.';
  const theSecret = 'Closures are easy.';
  const mySecret = secret(theSecret);
  const actual = mySecret();
  const expected = theSecret;
  assert.equal(actual, expected, msg);
  assert.end();
});
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
ericelliottpro
0viewers