Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

VBScript Eval function


May 13, 2021 VBScript


Table of contents


VBScript Eval function

The VBScript Eval function evaluates and returns the value of the expression.


VBScript Eval function Complete VBScript reference manual

The Eval function evaluates the expression and returns the result.

Grammar

Eval( expression )

parameter describe
expression Required.The expression to be calculated.

Create a regular expression object:

<script type="text/vbscript">

function myFunction()
alert("Hello world")
end function

eval("myFunction()")

</script>

Try it out . . .

VBScript Eval function Complete VBScript reference manual