817
Learn to code
(sh.itjust.works)
Post funny things about programming here! (Or just rant about your favourite programming language.)
Have fun with JS, everyones most consistent and beloved language.
https://jsisweird.com/
My favorite part is empty array truthiness. [] is falsy ( [] == true returns false ), but ![] is false. !![] is obviously true. (! is inversion as in all normal languages)