Operators determine how the information in a variable(s) should be evaluated in an expression.
There are several different types of operators - arithmetic, comparison and logical. Each has their own purpose. Arithetic operators are used to perform basic mathematical operations such as adding and subtracting. Comparison operators are used for relational and equality analysis in an expression. Finally the logical operators allows us to perform complex logical expressions.
The data type (numeric, string or boolean) will also be a factor in determining what operator you'll use. Here are some quick examples to get you in the mood:
Set Variable: "fname" = "Fred" Set Variable: "lname" = "Wahid" Set Variable: "salary" = 500 Set Variable: "salary" = 500 Set Variable: "overtime" = 120
Set Variable: "pay" = salary + overtime If (overtime > 300) Go to and Play("toomuch") End If If (fname ne "") Set Variable: "fullname" = fname & " " & lname End If
Let's begin with Numeric Operators...
| » Level Basic |
|
Added: 2000-09-14 Rating: 9 Votes: 62 |
| » Author |
| Eddie is the Content Editor at Flashkit.com and is actually a sentient Gateway Solo 2150xl notebook that suffers from acute lysdexia and caffeine addiction. He is carried on the shoulders of a semi-autonomous human called "Body". |
| » Download |
| Download the files used in this tutorial. |
| Download (10 kb) |
| » Forums |
| More help? Search our boards for quick answers! |
-
You must have javascript enabled in order to post comments.


Comments
There are no comments yet. Be the first to comment!