![]() |
VOOZH | about |
The vm.runInThisContext() method compiles the code, runs it inside the context of the current global and then returns the output. Moreover, the running code has no access to the local scope, but have access to the current global object. Syntax:
vm.runInThisContext( code, options )
Parameters: This method accept two parameters as mentioned above and described below:
Return Value: It returns the result of the very last statement executed in the script. Below examples illustrate the use of vm.runInThisContext() method in Node.js: Example 1:
Output: So, the vm.runInThisContext() method have no access to the local scope hence, localVar is unchanged here.
vmresult: 'Geeks', localVar: 'GfG' evalresult: 'CS', localVar: 'GfG'
Example 2:
Output:
vmresult: '9', localVar: '6' evalresult: '11', localVar: '6'
Reference: https://nodejs.org/api/vm.html#vm_vm_runinthiscontext_code_options