Quote:
Originally Posted by WhiteDragon
return Function
return is a function, not a statement, therefore it should use ( ) around the value, otherwise we are using GS1 syntax.
|
No, it is not.
return; is a part of the language syntax, just like in most other scripted languages. Similarly, it is
break; and
continue;, not
break(); and
continue();.
Incidentally, I seem to have covered
quite a lot of this already.