Last active
May 14, 2024 02:29
-
-
Save marceloandrader/a73b5d11bc94d88a30c4 to your computer and use it in GitHub Desktop.
Functions are objects
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
| // you can create a function by passing the | |
| // Function constructor a string of code | |
| var func_multiply = new Function("arg1", "arg2", "return arg1 * arg2;"); | |
| func_multiply(5,10); // => 50 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment