JavaScript
You're viewing a single thread.
('b' + 'a' + + 'a' + 'a').toLowerCase()
Returns "banana"
wut
I'm guessing the + + in the middle returns NaN
Indeed, the unary plus operator tries to convert whatever is after it to a number if it isn't already. Since 'a' is not a valid number, it returns NaN (not a number)