Skip to content

Instantly share code, notes, and snippets.

@Priler
Priler / gist:b2d4c9d97231f3ec9bb9993786f4ff57
Created June 22, 2016 07:18
.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
;
});