DEV Community

Discussion on: What is the weirdest piece of code that you have written and does the job?

Collapse
 
artyomgazizyanov profile image
Artemiy Gazizyanov

One night, being tired and sleepy, I wrote something like this

if(a == true)
{
   doSmth();
}
else if (a == false)
{
    dontDoSmth();
}

In the next morning, when I found this, I decided to leave this code on its place, because it was so embarrassing and stupid, so I monumented it in my code.

Collapse
 
ankitbeniwal profile image
Ankit Beniwal

ohh... you missed a check for NULL 😂😂