Created
November 21, 2017 05:07
-
-
Save AaronFlower/d7665f4bdf0a1f62a65b8bb290e73f51 to your computer and use it in GitHub Desktop.
Javascript Function Object
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
| const adder = new Function('a', 'b', 'return a + b') | |
| adder(2, 3) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment