JS encontra uma palavra mais longa na função de string
function findLongestWordLength(str) {
return Math.max(...str.split(' ').map(word => word.length));
}
Tiger King
function findLongestWordLength(str) {
return Math.max(...str.split(' ').map(word => word.length));
}