Skip to content
Advertisement

Spread Operator – TypeScript

I’m trying to pass an array as an argument with Spread operator but something is going wrong.

JavaScript

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
Advertisement