When it comes to writing functions with numerous parameters, do you typically format them like this:
function foo(
a: number,
b: string,
c: boolean): boolean {
....
}
or do you prefer formatting them like this:
function foo(
a: number,
b: string,
c: boolean
): boolean {
....
}
Which style do you lean towards?