Answer:
Just Click Log out!
Explanation:
Its Simple, really! I promise its real
Answer:
function findLongestWord(str) {
var longestWord = str.split(' ').sort(function(a, b) { return b.length - a.length; });
return longestWord[0].length;
}
findLongestWord(InputHere);
Explanation:
Replace InputHere with the input
In a file extension, it tells what type of file it is and tells what compiler to run the code.