Remove from String
x='hello'
x.replace(/h/g,'') // 17 bytes
x.split`h`.join`` // 16 bytes
x.replaceAll('h','') // 19 bytes
Another fun one from the great javascript golfing tips stackexchange thread.
This one comes from user emanresu-a and this answer.