【lodash源码】_.startsWith()

函数检查字符串是否是目标字符开始的
/**
 * Checks if `string` starts with the given target string.
 */
function startsWith(string, target, position) {
  const { length } = string
  position = position == null ? 0 : position
  if (position < 0) {
    position = 0
  }
  else if (position > length) {
    position = length
  }
  target = `${target}` // es6中模板字符`xxxxx`,在字符串中嵌入变量,例如:`xx${变量}xx`
  return string.slice(position, position + target.length) == target
}
export default startsWith

测试: _.startsWith('abc', 'ab')=>/true


版权声明:本文为qq_30091939原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。