Parámetros de VBScript ByRef

¿Qué son los parámetros ByRef?

Si ByRef se especifica, los argumentos se envían como referencia cuando se llama a la función o al procedimiento.

Ejemplo

<!DOCTYPE html>
<html>
   <body>
      <script language = "vbscript" type = "text/vbscript">
         Function fnadd(ByRef num1, ByRef num2)
            num1 = 4
            num2 = 5
         End Function
          
         Dim x,y
         x = 6
         y = 4
         res = fnadd(x,y)
         document.write("The value of x is " & x & "<br />")
         document.write("The value of y is " & y & "<br />")
          
      </script>
   </body>
</html>

La función anterior toma el parámetro xey como referencia. Por tanto, después de ejecutar la función, se cambian los valores.

Si la función anterior se guarda como .html y se ejecuta en IE, la salida sería la siguiente:

The value of x is 4
The value of y is 5