You must log in or register to comment.
deleted by creator
Falsy zero? What’s wrong with that, 1 is true and 0 is false. I thought that was standard logic?
deleted by creator
ah ok , I think I write this a bit more verbose when using other languages, instead of
if(thing) { stuff; }
I do
if(thing != null) { stuff; }
so checking for numbers being truthy & existing didn’t seem like an issue
deleted by creator