Why does this
2 + + 3
return 5, but this
'2837363' + + '/'
returns
"2837363NaN"? Even the '/' got lost.
Why would a programming language accept this syntax without throwing a syntax error? When does it assume, the empty place evaluates to 0 (1st example) and when to NaN (2nd example)?