单项选择题

以下代码,哪个结果是正确的?()
var str='123abc';
str += str.replace('abc' , '');
alert(str);

A.123abc123
B.123abc
C.123
D.abc