I’m trying to pass an array as an argument with Spread operator but something is going wrong.
JavaScript
x
8
1
function addThreeNumbers(x:number, y:number, z:number){
2
console.log(x+y+z)
3
}
4
5
const args: number[] = [2,6,4]
6
7
addThreeNumbers(args)
8
Advertisement
Answer
For TypeScript to correctly predict what argument types are going to spread into the parameter, you will have to change the args
variable type into a tuple as follows:
JavaScript
1
2
1
const args: [number, number, number] = [2, 6, 4];
2