Given a string, remove all non-alphanumeric characters from the string.
// input:
const s = 'Hello world, today is day 9!@#'
// output:
'Helloworldtodayisday9'
(Ctrl + ')
Loading...
/* output */
Next(Ctrl + y)
Given a string, remove all non-alphanumeric characters from the string.
// input:
const s = 'Hello world, today is day 9!@#'
// output:
'Helloworldtodayisday9'
/* output */