I want to pass a parameter to override a deafult parameter that comes later in the function declaration than another default parameter that I want to let be default. Is this possible? Here's an example of what I want to do:
function f(a:string, b:number=1, c:string='FOO'){ // do stuff } f('val for a', 'val for c') // want b to still be default of 1