Added two more to my list.
tags: #programming #programminglanguages #python #javascript #cpp #c
Added two more to my list.
tags: #programming #programminglanguages #python #javascript #cpp #c
@probably Yeah, TBH I use it as well. It has however a nasty side effect - it also truncates numbers number to a 32-bit integer value (even though JS's number type can store integers safely to around 2**53ish).
0x7fffffff|0
2147483647
(0x7fffffff+1)|0
-2147483648
(0x100000000)|0
0