Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
sterex4389yNot entirely true, there are also:
3.
if(condition) statement;
4.
(condition) ? statement1 : statement2; -
sterex4389yDepending on where they come from, you may find a fifth and sixth categories too:
5.
switch(condition) {
case true:
statement;
break;
}
6.
switch(condition)
{
case true:
statement;
break;
} -
nerd1659yNot forgetting
if(condition):
endif;
For those people who have a special place reserved in hell
is it true?l
undefined