- Impact
- 6
I've asked this before, but would like to see what everyone thinks about it now.
Is it better to place the variable first or last? Which do you prefer?
placing it first:
if ($day == 'Monday')
placing it last:
if ('Monday' == $day)
Is it better to place the variable first or last? Which do you prefer?
placing it first:
if ($day == 'Monday')
placing it last:
if ('Monday' == $day)














