Sign in
Log inSign up

Do you keep extra space between lines in your code to make it more readable?

Regina Hines's photo
Regina Hines
·Nov 26, 2016

So, to make code more readable and easier to understand do you keep an extra space between lines like this :

const a = getA();

a.doStuff();

a.doAnotherStuff();

Or, there is no extra space between lines :

const a = getA();
a.doStuff();
a.doAnotherStuff();

Which one do you prefer?