WMLScript compare() Function
Complete WMLScript String Library
The compare() function compares two strings and returns a value that represents the result of the comparison.
The compare() function can return one of the following values:
- -1 (if string1 < string2)
- 0 (if string1 = string2)
- 1 (if string1 > string2)
Syntax
|
n = String.compare(string1, string2)
|
| Part |
Description |
| n |
The integer returned from the function |
| string1 |
A string |
| string2 |
A string |
Example
var a = String.compare("world","world");
var b = String.compare("I","world");
var c = String.compare("world","I");
|
Result
Complete WMLScript String Library
Click here to design a Stunning Flash Website for Free
Wix is a revolutionary web design tool that provides anyone with the possibility to create professional and beautiful websites for free.
With e-commerce features, search engine visibility and many more professional tools, Wix is the ultimate solution for creating a spectacular site while saving tons of money.
|