Creating scripts in javascript instead of vbscript

Viewed 0

Is it ok if I run my scripts in javascript instead of vbscript? VBScript is a little uglier to understand.

With the interpreter still work since they both are called by cscript?

1 Answers

There is an undocumented feature that will enable this. Make the very first line:

LANG=jscript

Related