Skip to content

Instantly share code, notes, and snippets.

@seandogg
Created September 19, 2018 22:39
Show Gist options
  • Save seandogg/f8c47e5d94bd6c073050ff882ec2fa7f to your computer and use it in GitHub Desktop.
Save seandogg/f8c47e5d94bd6c073050ff882ec2fa7f to your computer and use it in GitHub Desktop.
const make = 'BMW';
const model = 'x5';
const colour = 'Royal Blue';
function leftPad(str, length = 20) {
return `→ ${' '.repeat(length - str.length)}${str}`;
}
console.log(leftPad(make));
console.log(leftPad(model));
console.log(leftPad(colour));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment