100 Days of code Day 8
Codewars
1st challenge
Exclamation marks series #1: Remove an exclamation mark from the end of string
my solution
function remove (string) {
let newString = ''
if(string.charAt(string.length - 1) === '!'){
newString = string.slice(0,-1)
return...
myblog.riegercodes.com4 min read