I happened to know the following code
Here is the code, and very simple:
var test = 0 || -1 ;
console.log(test);
then the output in the console is -1
and somehow i am really new into the javascript,
all i think of is that the 0 stands for Boolean False in JS ,and so ||
operator seems to ignore the 0 and assign the value -1 to the variable
so am i right ? i just want a confirm