Uma vez, me perguntaram sobre a diferença entre as 2 linguagens, quando se escreve uma rotina.
Aqui uma pequena demonstração das linguagens.

Script VBscript

Dim WshShell, oExec
Set WshShell = CreateObject("WScript.Shell")
Set oExec = WshShell.Exec("calc")
Do While oExec.Status = 0
     WScript.Sleep 100
Loop
WScript.Echo oExec.Status



Script JScript

var WshShell = new ActiveXObject("WScript.Shell");
var oExec = WshShell.Exec("calc"); 
while (oExec.Status == 0)
{
     WScript.Sleep(100);
} 
WScript.Echo(oExec.Status);



#Windows #VBscript #Wscript #JScript #AirdropsQb