Usuń znaki interpunkcyjne z strun JS

const regex = /[!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~]/g;
const result = WANTED_STRING.replace(regex, '');
Ghaith Alzin