Interested in advertising on Derpibooru? Click here for information!
Help fund the $15 daily operational cost of Derpibooru - support us financially!
Description
No description provided.
Source
not provided yet
Help fund the $15 daily operational cost of Derpibooru - support us financially!
No description provided.
ah. for some odd reason, I thought the empty space caused the NaN but it was actually the extra plus sign.
"b" + "a"
produces"ba"
, but+"a"
produces NaN (Not a Number) because the “+” tries to coercea
to a number but its not doable. The NaN is then converted to a string"NaN"
, then the finala
is appended.in that case, the second “a” becomes the last “a”. where does the third “a” go?
"b" + "a" + + "a" + "a"
"baNaNa"
Edited