-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Open
Labels
Description
In the book, this code is demonstrated :
function foo(x, y, z) { }
var args = [0, 1, 2];
foo(...args);
This is perfectly valid ES6 code, however AFAIK the TS compiler reports an error per microsoft/TypeScript#5296
POFerro