SOURCE

const str = "0123456789";
/* 
    str.substr(start[, length])
*/
let a = str.substr(0,2);
console.log(a)
let a2 = str.substr(-3,2);
console.log(a2)
//-1代表最后一位,所以最多取的长度为1,写2还是1
let a3 = str.substr(-1,2);
console.log(a3)

/*  包头不包尾。如果任一参数小于 0 或为 NaN,则被当作 0。
    str.substring(indexStart[, indexEnd])
*/
let b = str.substring(0,2);
console.log(b);
let b1 = str.substring(-3,2);
console.log(b1)
let b2 = str.substring(-1,2);
console.log(b2)
console 命令行工具 X clear

                    
>
console