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>
 
// https://gist.github.com/ericelliott/2b624243f030405abe0c
const getSecret = (secret) => {
  return {
    get: () => secret
  };
};
test('Closure for object privacy.', assert => {
  const msg = '.get() should have access to the closure.';
  const expected = 1;
  const obj = getSecret(1);
  const actual = obj.get();
  try {
    assert.ok(secret, 'This throws an error.');
  } catch (e) {
    assert.ok(true, `The secret var is only available
      to privileged methods.`);
  }
  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