Advertisement
Guest User

Untitled

a guest
Nov 21st, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function find(needle, haystack) {
  2.   if(haystack.length > 0) {
  3.     if(needle == haystack[0]) {
  4.       return 0;
  5.     } else {
  6.       var idx = find(needle, haystack.slice(1));
  7.       if(idx !== null) {
  8.         idx = idx + 1;
  9.       }
  10.       return idx;
  11.     }
  12.   } else {
  13.       return null;
  14.   }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement