Creates a new function.
new(...args, body): Function;
args variadic
A list of arguments the function accepts as strings.
body
The body of the function as a string.
A new function.
let pow = new Function("x", "e", "return x ** e")
pow(2, 16)
65536