码迷,mamicode.com
首页 > 编程语言 > 详细

[Javascript] String method: endsWith() && startsWith()

时间:2016-05-16 07:05:24      阅读:266      评论:0      收藏:0      [点我收藏+]

标签:

With endsWith && startsWith, you can easily find out whether the string ends or starts with some other string:

 

example:

var str = "this is a new world"

var startsWithRes = str.startsWith("this"); //true
var endsWithRes = str.endsWith(world); // true

 

So you don‘t need to write regex any more.

[Javascript] String method: endsWith() && startsWith()

标签:

原文地址:http://www.cnblogs.com/Answer1215/p/5496819.html

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