_.startsWith(检查开头字符串)
_.startsWith([string=''], [target], [position=0])_.startsWith('abc', 'a');
// => true
_.startsWith('abc', 'b');
// => false
_.startsWith('abc', 'b', 1);
// => trueLast updated
_.startsWith([string=''], [target], [position=0])_.startsWith('abc', 'a');
// => true
_.startsWith('abc', 'b');
// => false
_.startsWith('abc', 'b', 1);
// => trueLast updated