jed/140bytes

Byte saving techniques - Math.ceil trick

elclanrs opened this issue · 1 comments

I saw that the Math.floor trick is documented but the not Math.ceil altough it's being used here:

a = 10.5;
~~a; //=> 10
-~a; //=> 11
jed commented

you should add this to the wiki.