Has anybody done constructor overloading in TypeScript. On page 64 of the language specification (v 0.8), there are statements describing constructor overloads, but there wa
You should had in mind that...
contructor() constructor(a:any, b:any, c:any)
It's the same as new() or new("a","b","c")
new()
new("a","b","c")
Thus
constructor(a?:any, b?:any, c?:any)
is the same above and is more flexible...
new() or new("a") or new("a","b") or new("a","b","c")
new("a")
new("a","b")