a >= 0
This function returns "true" if a is greater or equal "0". Parameter a is interpreted numerically.
Parameters
|
Parameter |
Description |
|
a |
Value. |
Examples
|
Parameter a |
Result |
|
|
true |
|
1 |
true |
|
0 |
true |
|
-1 |
false |