Nodejs String Contains contains(char)

Here you can find the source of contains(char)

Method Source Code

/**/*w w w. j  a  v a 2  s .com*/
 * Is array contains requested char or string.
 * @param {string | number} char is requested string. 
 * @return {Number}
 */
String.prototype.contains = function(char) {
    return this.indexOf(char) != -1;
};

Related

  1. contains()
    String.prototype.contains = function() {
      var args = arguments;
      for (var i in args) {
        var str = args[i];
        if (typeof str === "string" && this.indexOf(str) > -1) {
          return true;
      return false;
    ...
    
  2. contains()
    var fs = require('fs');
    var path = process.argv[2];
    var suffix = '.'+process.argv[3];
    var list =[];
    String.prototype.contains = function() {
        return String.prototype.indexOf.apply( this, arguments ) !== -1;
    };
    fs.readdir(path, function(err, files){
      if(!err){
    ...
    
  3. contains()
    String.prototype.contains = function () {
      return String.prototype.indexOf.apply(this, arguments) !== -1;
    };
    
  4. contains(a)
    String.prototype.contains = function (a) {
      if (this.indexOf(a) > -1)
        return true;
      else
        return false;
    };
    
  5. contains(argument)
    var string = "Hello world, my name is cole hudson. This is super cool.";
    String.prototype.contains = function(argument){
      var parent = this.toLowerCase();
      var argumentString = argument.toLowerCase();
      return (parent.indexOf(argumentString) > -1);
    };
    console.log(string.contains("World"));
    
  6. contains(it)
    String.prototype.contains = function(it) { return this.indexOf(it) != -1; };
    function geturlform(addr){
      if(addr.contains('http') || addr.contains('https')){
        return "<a href='"+addr+"'>"+addr+"</a>";
      }else{
        return addr;
    
  7. contains(it)
    String.prototype.contains = function(it) {
        return this.indexOf(it) !== -1;
    };
    
  8. contains(it)
    String.prototype.contains = function(it) {
      if (it instanceof Array) {
        for (var i in it) {
          if (this.indexOf(it[i]) != -1)
      return true;  
        return false;
      else
    ...
    
  9. contains(it)
    function arrayIncludes(value, array) {
        return array.indexOf(value) > -1;
    String.prototype.contains = function(it) { 
      return this.indexOf(it) != -1; 
    };