Skip to content

Instantly share code, notes, and snippets.

@NeuroWinter
Created August 16, 2017 01:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NeuroWinter/ccf8edca214a849e1964fb6f99b9a87a to your computer and use it in GitHub Desktop.
Save NeuroWinter/ccf8edca214a849e1964fb6f99b9a87a to your computer and use it in GitHub Desktop.
function testCompanyInVar (companyName, companyVar) {
for (var i = 0; i < companyVar.length; i++) {
if (companyName == companyVar[i].label) {
return true
};
};
return false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment