Guest User

Untitled

a guest
May 21st, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. // from expert sexchange... or was it experts exchange...
  2. function replaceAll( str, from, to ) {
  3. var idx = str.indexOf( from );
  4.  
  5.  
  6. while ( idx > -1 ) {
  7. str = str.replace( from, to );
  8. idx = str.indexOf( from );
  9. }
  10.  
  11. return str;
  12. }
Add Comment
Please, Sign In to add comment