Skip to content

Instantly share code, notes, and snippets.

@leafbird
Created April 1, 2013 05:04
Show Gist options
  • Save leafbird/5283316 to your computer and use it in GitHub Desktop.
Save leafbird/5283316 to your computer and use it in GitHub Desktop.
string formatting function in JavaScript.
String.prototype.format = function () {
var formatted = this;
for (arg in arguments) {
formatted = formatted.replace("{" + arg + "}", arguments[arg]);
}
return formatted;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment