Description
Evaluates FFish Script code.
Syntax
eval(expression)
Parameters
Returns
The eval function allows dynamic execution of Ffish Script source code and returns the result of the expression.
Example
value = [1, 2, 3];
x = 1;
eval("value" + "[" + x + "]"); //returns 2