const removeExclamation = (str, count) => {
	// Ваш код здесь
};
 
 console.log(removeExclamation("!!He!!llo, !world!", 5));

Назад