Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I just want to ask about a shorthand if statement I have come across.
I'm seeing:
if(statement,1)
I'm assuming this is short for:
if(statement,1,0).
Could someone verifiy that this is correct? Thanks.
No, not quite. if(statement,1) is the same as if(statement,1, null()). And a null is not 0 so that's why they're different.
No, not quite. if(statement,1) is the same as if(statement,1, null()). And a null is not 0 so that's why they're different.