Skip to content

Instantly share code, notes, and snippets.

@Priler
Created June 22, 2016 07:18
Show Gist options
  • Save Priler/b2d4c9d97231f3ec9bb9993786f4ff57 to your computer and use it in GitHub Desktop.
Save Priler/b2d4c9d97231f3ec9bb9993786f4ff57 to your computer and use it in GitHub Desktop.
.format() for JavaScript, as in Python
// First, checks if it isn't implemented yet.
if (!String.prototype.format) {
String.prototype.format = function() {
var args = arguments;
return this.replace(/{(\d+)}/g, function(match, number) {
return typeof args[number] != 'undefined'
? args[number]
: match
;
});
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment