Mexican Wave
Task:Create a function that turns a string into a Mexican Wave. You will be passed a string and you must return that string in an array where an uppercase letter is a person standing up.
let mexicanWave = str.slice(0, i) + str[i].toUpperCase() + str....
1x55.hashnode.dev1 min read