Not add them ambigiously with
"a" + "b"but
String.concat("a", "b"); them?I'm guessing none of your developers ever has, because it doesn't work.
Why this acceptable:
String.fromCharCode(12);
but for concat, you have to do:
String("a").concat("b");?
Ridiculous.
No comments:
Post a Comment