Eval: Difference between revisions
Jump to navigation
Jump to search
C185driver (talk | contribs) m →Output |
|||
Line 23: | Line 23: | ||
<pre> | <pre> | ||
5 | 5 | ||
50 | |||
</pre> | </pre> | ||
Revision as of 01:27, 1 April 2013
Eval(string)
Description
Eval returns a value created by executing an expression as if it were a Function procedure. The required parameter, string, is a string expression that is executed. If multiple statements are to be executed, separate them with a carriage return (vbCRLF). The temporary, virtual procedure that gets created has all program variables passed in by value, so the variables are unmodifiable by the Eval function.
The code in the string is evaluated as JavaScript code. See the TechNote 04 “The role of JavaScript, HTML5 and WebKit”.
Example
Rem Eval Example 'Eval execute a string as a Function Dim x x = 5 Print Eval("x") Eval("x = x * 10") Print x
Output
5 50