1.

Which opearator can be used to check if two numbers are equal or not in VBScript?

Answer»

<> operator is used to check if two numbers are equal or not.

Example −

Dim a : a = 5Dim b : b = 10Dim cc = b <> aDocument.write ("Equality Check is " &c)


Discussion

No Comment Found