Call a specified function in the JavaScript context with the provided arguments.
call(function_name, ...)
An object of class NULL
of length 0.
The result of calling the specified function
if (FALSE) { # \dontrun{
ctx <- JSContext$new()
ctx$source(code = "function add(a, b) { return a + b; }")
ctx$call("add", 1, 2)
} # }