将字符串切割得到想要的部分

const str ="abcd"

consloe.log(str.substr(0,2))

输出为 ab

 

你可能感兴趣的:(javascript)