码迷,mamicode.com
首页 > 其他好文 > 详细

String.prototype.includes

时间:2016-04-28 09:23:08      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

if (!String.prototype.includes) {
  String.prototype.includes = function(search, start) {
    ‘use strict‘;
    if (typeof start !== ‘number‘) {
      start = 0;
    }
    
    if (start + search.length > this.length) {
      return false;
    } else {
      return this.indexOf(search, start) !== -1;
    }
  };
}

String.prototype.includes

标签:

原文地址:http://www.cnblogs.com/shidengyun/p/5441209.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!