When I write this:
var loc = "a,a\n";
alert(loc);
It shows "a..." in alert. Then after I add some values in loc as
loc = loc + "abc," + valueFromFunc;
alert(loc);
It shows "ab...a,a\nabc,value" in alert. Why I get a.. and ab.. in loc? I want loc to be "a,a\nabc,value"
I'm using Google Chrome. When I tried it in IE it works great but in chrome I got above output.
Screen shot of my google chrome:

a...– mplungjan Apr 28 '11 at 12:25a,a\n(a,afollowed by a newline) instead ofa...? – Lekensteyn Apr 28 '11 at 12:25a,a, as I would have expected. – Quentin Apr 28 '11 at 12:25a,ain the alert box for me. What browser are you testing in? Can you create a demonstration of the issue in JSFiddle? – Spudley Apr 28 '11 at 12:26