javascript split string by multiple characters code example
Example: javascript split string by multiple characters
let string = "Hello awesome, world!"
string.split(/[\s,]+/)
// Hello,awesome,world!
let string = "Hello awesome, world!"
string.split(/[\s,]+/)
// Hello,awesome,world!