Contact: aviboots(AT)netvision.net.il
41,195 questions
53,691 answers
573 users
const str = "Hello??? How are you?? What is your Wi-Fi password????"; // Use regular expression to match one or more '?' const result = str.replace(/\?+/g, "?"); console.log(result); /* run: Hello? How are you? What is your Wi-Fi password? */