Зачем все так усложнять?
String.prototype.sepa = function(str, sep) {
return this.replace(new RegExp(str, 'g'), sep);
};
alert('1 2 3 4 5'.sepa(' ', '-'));
Сообщение от Matre
|
Вот как, например, должна выглядеть вторая функция:
|
String.prototype.index = function(str) {
return [this].join().search(str);
};
alert('1 2 3 4 5'.index('4'));