Convert boolean result into number/integer

hd. picture hd. · Oct 19, 2011 · Viewed 227.2k times · Source

I have a variable that stores false or true, but I need 0 or 1 instead, respectively. How can I do this?

Answer

lonesomeday picture lonesomeday · Oct 19, 2011

Use the unary + operator, which converts its operand into a number.

+ true; // 1
+ false; // 0

Note, of course, that you should still sanitise the data on the server side, because a user can send any data to your sever, no matter what the client-side code says.