What is the difference between
alert("abc".substr(0,2));
and
alert("abc".substring(0,2));
They both seem to output “ab”.
|
What is the difference between
and
They both seem to output “ab”. |
|||
|
The difference is in the second argument. The second argument to Links? https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/String/substr https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/String/substring |
|||||
|
|
The first takes parameters as
Resources : |
|||||||||||||||||||
|
|
Another gotcha I recently came across is that in IE 8, More on this topic can be found here. |
|||
|
|
substringat this time. Usesliceinstead. – Derek 朕會功夫 Jul 8 '12 at 22:49