R/JSContext.R
JSContext-method-assign.Rd
Assign a value to a variable in the current context
assign(var_name, value)
An object of class NULL
of length 0.
No return value, called for side effects
if (FALSE) { # \dontrun{
ctx <- JSContext$new()
ctx$assign("a", 1)
ctx$get("a")
} # }