Hacker News new | ask | show | jobs
by MilanTodorovic 979 days ago
Couldn't we do it like (!need_free == !some_other_bool)?
2 comments

You can go the php way and do if (!!need_free)
Clever, I like it.