Skip to content

Instantly share code, notes, and snippets.

@fimion
Created February 5, 2020 21:41
Show Gist options
  • Save fimion/7b5dfd17286b6f11fd27a92893e03289 to your computer and use it in GitHub Desktop.
Save fimion/7b5dfd17286b6f11fd27a92893e03289 to your computer and use it in GitHub Desktop.
Line Indenting 4 or 8 spaces?
function doesThing(thing) {
if (thing.length >= 10 ||
thing.length === 0)
{
doTheThing()
}
}
function doesThing(thing) {
if (thing.length >= 10 ||
thing.length === 0) {
doTheThing()
}
}
function doesThing(thing) {
if (thing.length >= 10 ||
thing.length === 0) {
doTheThing()
}
}
function doesThing(thing) {
if (thing.length >= 10 ||
thing.length === 0) {
doTheThing()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment