fork download
  1. /*
  2.  
  3. Recursive function:
  4.  
  5.  - Load the lengths of each word in the string into an array
  6.  - Check if the end of the array has been reached
  7.   > if yes return value in maxLength
  8.   > if no compare adjacent elements of word lengths and keep the larger
  9.  
  10. */
  11.  
  12.  
  13. function findLongestWord(str) {
  14. var maxLength;
  15. var sizeList = str.split(" ");
  16. sizeList.replace(/./ , sizeList.length());
  17.  
  18. if(!sizeList) {
  19. return maxLength;
  20. } else {
  21. maxLength = sizeList[i] < sizeList[i + 1];
  22. findLongestWord(i++);
  23. }
  24.  
  25. return str.length;
  26. }
  27.  
  28. findLongestWord("The quick brown fox jumped over the lazy dog");
  29.  
Runtime error #stdin #stdout #stderr 0.05s 24808KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
/home/WLujwv/prog.js:16
  sizeList.replace(/./ , sizeList.length());
                                  ^

TypeError: sizeList.length is not a function
    at findLongestWord (/home/WLujwv/prog.js:16:35)
    at Object.<anonymous> (/home/WLujwv/prog.js:28:1)
    at Module._compile (module.js:571:32)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:488:32)
    at tryModuleLoad (module.js:447:12)
    at Function.Module._load (module.js:439:3)
    at Module.runMain (module.js:605:10)
    at run (bootstrap_node.js:420:7)
    at startup (bootstrap_node.js:139:9)