Guest User

Untitled

a guest
Dec 12th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. Operators
  2. VBScript has a full range of operators, including arithmetic operators, comparison operators, concatenation operators, and logical operators.
  3.  
  4. Arithmetic
  5. Symbol
  6.  
  7. Description
  8.  
  9. ^ Exponentiation
  10. - Unary negation
  11. * Multiplication
  12. / Division
  13. \ Integer division
  14. Mod Modulus arithmetic
  15. + Addition
  16. - Subtraction
  17. & String concatenation
  18. Comparison
  19. Symbol
  20.  
  21. Description
  22.  
  23. = Equality
  24. <> Inequality
  25. < Less than
  26. > Greater than
  27. <= Less than or equal to
  28. >= Greater than or equal to
  29. Is Object equivalence
  30. Logical
  31. Symbol
  32.  
  33. Description
  34.  
  35. Not Logical negation
  36. And Logical conjunction
  37. Or Logical disjunction
  38. Xor Logical exclusion
  39. Eqv Logical equivalence
  40. Imp Logical implication
Add Comment
Please, Sign In to add comment