Last active
June 27, 2016 00:47
-
-
Save egrueter-dev/94c670dc7c50ab44f599745481b0f3b9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function Person() { | |
| this.firstname = ‘John’ | |
| this.lastname = ‘Doe’ | |
| console.log(`This function is invoked!`) | |
| } | |
| var john = new Person(); | |
| //=> "This function is invoked!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment