js.eval: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
{{Experimental}} | |||
{{MacroFunction | {{MacroFunction | ||
|name=js.eval | |name=js.eval |
Revision as of 08:05, 4 August 2021
This article describes a feature or macro function that is experimental and may be subject to change.
js.eval() Function
Note: This function can only be used in a Trusted Macro
• Introduced in version 1.9.4
Evaluates a string as a javascript expression. Supports ECMA 2021 standard. For security, access to native types and external resources are limited. Similarly, all arrays passed in to the javascript environment are shallow copied, so changes to the array do not directly change MapTool's state.
Usage
js.eval(expression, arg1, arg2...)
Parameters
expression
- A valid javascript fragment. It is wrapped inside an anonymous function.arg1, arg2...
- Any. Will be converted to the equivalent javascript type as needed. Arguments are accessible via theargs
variable.return
- Any primitive type; Complex types are converted to (JSON) strings.
Example
Using
js.eval
on an expression
.
[r: js.eval("let a = [1,2,3]; return a[1] + args[0]"), 5]
Output:
7