Skip to content

Instantly share code, notes, and snippets.

@captbaritone
Created May 11, 2018 00:50
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 captbaritone/86b6cc132946bc21c57e0ccef95e792b to your computer and use it in GitHub Desktop.
Save captbaritone/86b6cc132946bc21c57e0ccef95e792b to your computer and use it in GitHub Desktop.
<html>
<body>
<script>function test(a, b) {};</script>
<script src='https://unpkg.com/underscore@1.8.3/underscore.js'></script>
<script> console.log("1.8.3 result: ", _.bind(test, {}).length); // 2 </script>
<script src='https://unpkg.com/underscore@1.9.0/underscore.js'></script>
<script> console.log("1.9.3 result: ", _.bind(test, {}).length); // 0 </script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment