An exclusive JavaScript story
"b" + "a" + + "a" + "a" === "baNaNa"
1
The code above returns true. Yes hell! "NaN" in the right "baNaNa" simply means "Not a number".
Note that in JS, the plus sign (+) can be used as an operator (for number) and for concatenating (for string).