Eval: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
(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 (Basic) ==
== Example ==


<pre>
<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
</pre>
</syntaxhighlight>
 
</tabber>
== Example (JavaScript) ==
<pre>
// Eval Example
/* Eval execute a string as a Function */
 
var x;
x = 5;
NSB.Print(eval("x"));
eval("x = x * 10");
NSB.Print(x);
</pre>


== Output ==
== Output ==

Latest revision as of 17:45, 22 July 2019

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

// 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

Output

5
50

Related Items

Execute