标签:
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