Created
September 19, 2018 22:39
-
-
Save seandogg/f8c47e5d94bd6c073050ff882ec2fa7f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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