Guest User

Untitled

a guest
Jun 23rd, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. import _ from 'lodash';
  2.  
  3. function concatStringArray(arr){
  4. var newarr = [];
  5. for(let i = 0; i < arr.length; i++){
  6. newarr.push(arr[i].replace(/[0-9]/g, ''));
  7. }
  8. return _.join(newarr, ' ');
  9. }
  10. var hey = ["he3llo","js1", "LA4"];
  11. console.log(concatStringArray(hey));
Add Comment
Please, Sign In to add comment