Skip to content

Instantly share code, notes, and snippets.

@sespinosa
Created September 9, 2017 18:36
Show Gist options
  • Save sespinosa/685382bf444065b8e4e8cf033c2f9dd6 to your computer and use it in GitHub Desktop.
Save sespinosa/685382bf444065b8e4e8cf033c2f9dd6 to your computer and use it in GitHub Desktop.
addWhiteSpace at the end function
function addWhiteSpaceAtTheEnd(str, len) {
if(str.length >= len) return str;
var delta = len - str.length;
var res = str;
for(var i = 0 ; i < delta ; i++) {
res = res + " ";
}
return res;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment