Lodash startsWith()

Lodash startsWith()

最后一个说法是怎么说的?该字符串不以“b”开头。有人可以解释“1”的位置以及为什么它使该陈述为真吗?

var _ = require('lodash');
var result = _.startsWith('abc', 'b');

console.log(result);

result = _.startsWith('abc', 'b', 1);
console.log(result);
>node tester.js

false

true

正如documentation所说,第三个参数表示要搜索的位置。因此,如果您从索引 1 开始,那么字符串 abc 实际上以 b 开头,因此它将 return true.