What does !1 and !0 mean in Javascript?

Viewed 67935

Possible Duplicate:
return !1 in javascript

In a JavaScript file I had to read today, there was a line where a variable was declared like a factorial, like this :

var myVariable = !1;

and then something similar was used as parameter in a function like this :

return variable.myFunction(!0);

Can anyone explain me what the exclamation mark means in this context and eventually, why this is generally used for (benefits) ?

Thank you in advance !

1 Answers
Related