(adsbygoogle = window.adsbygoogle || []).push({});
This is really basic but still confusing, i was doing some review when i stumbled upon this piece of code
if (!( 1 || 0 ))
i genually dont understand this, i am told that this is true but the explanation is not very good.
oops i figured it out sorry for the wasted post,i should have analysed it a bit more, its obvious that 0 is read as false and even though there is a 1 there, there is a && symbol, meaning that both must be true and the number 0 means false.