-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
featureNew implementationNew implementation
Description
Jus formatter like
// 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
;
});
};
}
console.log("{0} is dead, but {1} is alive! {0} {2}".format("ASP", "ASP.NET"));
// ASP is dead, but ASP.NET is alive! ASP {2}
Metadata
Metadata
Assignees
Labels
featureNew implementationNew implementation