Skip to content

Instantly share code, notes, and snippets.

@digitalhydra
Created December 13, 2013 19:55
Show Gist options
  • Save digitalhydra/7950288 to your computer and use it in GitHub Desktop.
Save digitalhydra/7950288 to your computer and use it in GitHub Desktop.
buscar texto en array
function oc(a)
{
var o = {};
for(var i=0;i<a.length;i++)
{
o[a[i]]='';
}
return o;
}
if( name in oc(['bobby', 'sue','smith']) ) { ... }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment