That's worse because now you have to find the innermost function and then walk back outwards. It gets especially ugly when the calls require other parameters
let x = anotherThing(
somethingElse(
something(
x, y, z
), 1, 2, 3
), "a", "b", "c"
);
Or maybe this looks cleaner?
let x = anotherThing(
somethingElse(
something(x, y, z),
1, 2, 3
),
"a", "b", "c"
);
Neither is easy to follow.