Skip to content

Instantly share code, notes, and snippets.

@mariyadiminsky
Last active June 27, 2016 00:34
Show Gist options
  • Save mariyadiminsky/5ee1496b90f7439c037b89f32b2738b0 to your computer and use it in GitHub Desktop.
Save mariyadiminsky/5ee1496b90f7439c037b89f32b2738b0 to your computer and use it in GitHub Desktop.
function createNewBunny() { new Bunny(); }
createNewBunny(); // ReferenceError
class Bunny {...etc}
createNewBunny(); // Works!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment