Tutorials Home
What's New
Top Rated
Submit
myTutes
Random!
Understanding Operators
Author: Eddie Carroll
| Website: http://www.flashkit.com |
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: 8.76 Votes: 62
Hits: 5049
|
| » 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)
|
|
Get conversion and unzipping tools
for PC and Mac here!
|
| » Forums |
|
More help? Search our boards for quick answers!
|
|
Please rate this tutorial, 10 is the top rating, you can also click the
comments link to read/write a review.
|
|
|