we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "delete backspace on string js"
Jacobo
16 May 2020
1// str1 your string with backspace 
2var str1 = 'Hello world xd lol'
3var str2 = ''
4// str2 string without empty 
5str2 = str1.replace(/\s/g, '')
6console.log(str2)
7// "Helloworldxdlol"
8