var str = "The MEAN stack is MongoDB, Express.js, AngularJS, and Node.js"; str.indexOf('MongoDB') !== -1 // true str.indexOf('Java') !== -1 //false str.indexOf('Node', 5) !== -1 //true