This is a beta version of Practice-It. Give us feedback

logo Practice-It logo

longestWord

Language/Type: JavaScript arrays
Author: Melissa Medsker-Galloway (on 2018/05/01)

Write a function named longestWord that accepts an array of Strings and returns the String that has the longest length. If more than one String in the array has the longest length, you the function should return the String that occurs last in the array. If the passed array is empty, the method should return an empty String.

For example, if an array named pokemon stores the following Strings:

["Pikachu", "Entei", "Mew", "Suicune", "Lugia", "Arcanine"] 

The call of longestWord(pokemon) should return Arcanine.

Type your solution here:


This is a function problem. Write a JavaScript function as described. Do not write a complete program; just the function(s) above.

You must log in before you can solve this problem.


Log In

If you do not understand how to solve a problem or why your solution doesn't work, please contact your TA or instructor.
If something seems wrong with the site (errors, slow performance, incorrect problems/tests, etc.), please

Is there a problem? Contact a site administrator.