SOURCE

console 命令行工具 X clear
> [1,null,null]
>
console
// 
console.log(["1", "2", "3"].map(parseInt))

// 题解
// map 入参 callbackfn: (value: string, index: number, array: string[]) => number, thisArg?: any
// parseInt 函数会执行为
parseInt("1", 0);
parseInt("2", 1);
parseInt("3", 2);