<<<<<<< HEAD Code Wars - Brett Crafton

Remove exclamation marks

Question

Write function RemoveExclamationMarks which removes all exclamation marks from a given string.

No examples

Solution by -

My Solution


	function removeExclamationMarks(s) {
		return s.split('!').join("");
		}
				

Try it yourself - CodeWars

======= Code Wars - Brett Crafton

Remove exclamation marks

Question

Write function RemoveExclamationMarks which removes all exclamation marks from a given string.

No examples

Solution by -

My Solution


	function removeExclamationMarks(s) {
		return s.split('!').join("");
		}
				

Try it yourself - CodeWars

>>>>>>> 0e614172debaa009c8d31330edbeb3b765b59c39