DEV Community

Discussion on: JavaScript Katas: Remove all exclamation marks from the end

Collapse
 
shimphillip profile image
Phillip Shim
function removeExclamationMarksFromEnd(inputString) {
  const index = inputString.indexOf('!')
  return inputString.slice(0, index)
}