See my code
<html>
<body>
<script type="text/javascript">
var str="Visit Microsoft!";
document.write( str = str.replace("",'ss'));
</script>
</body>
</html>
The output is
ssVisit Microsoft!
Why is it happening.?
|
See my code
The output is
Why is it happening.?
| |||
|
show 1 more comment
feedback
|
|
This is correct because every string begins with an empty string. See below post for more info: | |||
|
feedback
|
replacewith a string will only replace the first occurrence of that string. You pass an empty string, which is found at the beginning of the string ("something".indexOf("")returns0). – Felix Kling Feb 23 at 19:23"Visit Microsoft!" === "" + "Visit Microsoft!"– Alex K. Feb 23 at 19:26"foo" + "" + "bar" === "foobar"). – Felix Kling Feb 23 at 19:26str:str.replace(new RegExp("", "g"), "-")→"-V-i-s-i-t- -M-i-c-r-o-s-o-f-t-!-"– Flambino Feb 23 at 19:29