function f([a,b,c]) { // this works but a,b and c are any }
it\'s possible write something like that?
function f([a: number,b: nu
As a simple answer I would like to add that you can do this:
function f([a,b,c]: number[]) {}