HEAD
Write function RemoveExclamationMarks which removes all exclamation marks from a given string.
No examples
function removeExclamationMarks(s) {
return s.split('!').join("");
}
Try it yourself - CodeWars
Write function RemoveExclamationMarks which removes all exclamation marks from a given string.
No examples
function removeExclamationMarks(s) {
return s.split('!').join("");
}
Try it yourself - CodeWars