js-mentorship-razvan / javascript

Javascript study notes
GNU General Public License v3.0
22 stars 2 forks source link

Solve 'Exclamation marks series #2: Remove all exclamation marks from the end of sentence' #300

Closed odv closed 5 years ago

odv commented 5 years ago

https://www.codewars.com/kata/exclamation-marks-series-number-2-remove-all-exclamation-marks-from-the-end-of-sentence/train/javascript

RazvanBugoi commented 5 years ago
function remove(s){
  return s.replace(/!+$/, "");   
}