我是TypeScript的新手,我正在尝试关注
const storedNumber = [1,2,3,4,5];
Math.max(storedNumber)
但我保留了打字稿错误说
类型的论点'任何'不能分配给类型编号的参数
答案 0 :(得分:1)
Math.max
要求数字作为Math.max(1, 3, 2)
而不是数组的参数。你可以spread
数组。
const storedNumber = [1,2,3,4,5];
console.log( Math.max(...storedNumber) );

文档:Math.max(),Spread