Jul 23, 2017 · 1 min read
You forgot to mention the main advantage of this. If you have each argument on a new line:
es8(
10,
20,
30,
);it allows you to add a new argument without affecting the blame of other lines:
es8(
10,
20,
30,
40, // newly-added
);without the trailing commas, you’d need to modify two lines (the line with 30 as well as the new line)
