8

when you see this in the code of a senior programer

if(0){
all sort of things;
}

or just like

if($var == $tmp){
do nothing
}

if i would have done this in college i wouldnt be programming today...

Comments
  • 1
    I often see...

    If(foo === 'foobar') { } else {

    //Things happen in here

    }

    All over the place I work for's code. Whyyyyyyy do this :(
  • 0
    yeah that an other thing i see all over the place too..... its insane how much if declare for no reason
Add Comment