fork(1) 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(" ").length();
  16. sizeList.push(null);
  17.  
  18. if(sizeList.end()) {
  19. return maxLength;
  20. } else {
  21. maxLength = sizeList[i] < sizeList[i++];
  22. }
  23.  
  24. return str.length;
  25. }
  26.  
  27. findLongestWord("The quick brown fox jumped over the lazy dog");
Runtime error #stdin #stdout #stderr 0.08s 24864KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
/home/wef9HK/prog.js:15
  var sizeList = str.split(" ").length();
                                ^

TypeError: str.split(...).length is not a function
    at findLongestWord (/home/wef9HK/prog.js:15:33)
    at Object.<anonymous> (/home/wef9HK/prog.js:27: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)