Modern browsers have Array#includes, which does exactly that and is widely supported by everyone except IE:
**console.log(['joe', 'jane', 'mary'].includes('jane')); //true**
You can also use Array#indexOf, which is less direct but doesn't require polyfills for outdated browsers.
**console.log(['joe', 'jane', 'mary'].indexOf('jane') >= 0); //true**