23.03.2015, 21:16
Quote:
I'm not sure if the terms "truthy" and "falsey" really exist in Pawn. False is 0, and true is not false.
Truthy/falsey refers to values in languages such as JavaScript where the following are treated as false in an if-statement: Код:
"" NaN null undefined 0 |
Код:
0 = false 1 = true 2 = true ... 36 = true