Comment by theThree
1 day ago
function f1(a:number, b:number, c:number, d:number) {
[a, b] = [b, a]
[c, d] = [d, c]
console.log(a, b, c, d)
}
For the above codes Typescript gives error message: Type 'number[]' is not assignable to type 'number'.
No comments yet
Contribute on Hacker News ↗