eval()

The eval() function provides the ability to execute a dynamic script useful for debugging purposes. This is given a string, and executes it as if it was part of a script.

For example, to test some expressions, you could enter them into a Text field on a Form. Then, get a script to execute the commands in the Text field.

eval (scriptField);
  Although useful for experimenting with scripts and testing them, TIBCO recommends that you do not use this function in a production environment because it allows the execution of any script text that is provided at runtime.