// Eval Example
/* Eval execute a string as a Function */
var x;
x = 5;
NSB.Print(eval("x"));
eval("x = x * 10");
NSB.Print(x);
Add javascript snippet |
No edit summary |
||
Line 7: | Line 7: | ||
The code in the string is evaluated as JavaScript code. See the TechNote 04 “The role of JavaScript, HTML5 and WebKit”. | The code in the string is evaluated as JavaScript code. See the TechNote 04 “The role of JavaScript, HTML5 and WebKit”. | ||
== Example | == Example == | ||
< | <tabber> | ||
JavaScript= | |||
<syntaxhighlight lang="JavaScript"> | |||
// Eval Example | |||
/* Eval execute a string as a Function */ | |||
var x; | |||
x = 5; | |||
NSB.Print(eval("x")); | |||
eval("x = x * 10"); | |||
NSB.Print(x);</syntaxhighlight> | |||
|-| | |||
BASIC= | |||
<syntaxhighlight lang="vb.net"> | |||
Rem Eval Example | Rem Eval Example | ||
'Eval execute a string as a Function | 'Eval execute a string as a Function | ||
Line 17: | Line 30: | ||
Eval("x = x * 10") | Eval("x = x * 10") | ||
Print x | Print x | ||
</ | </syntaxhighlight> | ||
</tabber> | |||
</ | |||
== Output == | == Output == |
Eval(string)
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”.
// Eval Example
/* Eval execute a string as a Function */
var x;
x = 5;
NSB.Print(eval("x"));
eval("x = x * 10");
NSB.Print(x);
Rem Eval Example
'Eval execute a string as a Function
Dim x
x = 5
Print Eval("x")
Eval("x = x * 10")
Print x
5 50