Skip to content

Instantly share code, notes, and snippets.

@isvaldo
Created February 12, 2015 19:41
Show Gist options
  • Save isvaldo/7f97b3c47f4fb5ac83c1 to your computer and use it in GitHub Desktop.
Save isvaldo/7f97b3c47f4fb5ac83c1 to your computer and use it in GitHub Desktop.
exemplo de recursão
function find (Ob,str) {
for (var key in Ob) {
if (Ob.toString()== str) {
//get indexof()
}
find(Ob[key],str);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment