JSFiddle - React, Tailwind, and code Playground
JavaScript
function alienLanguage(str){
return str.toUpperCase().split(' ').map(function(word) {
return word.slice(0, -1) + word.substr(-1).toLowerCase()
}).join(' ')
}
var str = 'this is a test'
console.log(alienLanguage(str))