Skip to content

Instantly share code, notes, and snippets.

@tqyq
Last active November 30, 2015 02:30
Show Gist options
  • Save tqyq/7e330e5d5ec644b440b3 to your computer and use it in GitHub Desktop.
Save tqyq/7e330e5d5ec644b440b3 to your computer and use it in GitHub Desktop.
javascript string format
String.prototype.format = function()
{
var args = arguments;
return this.replace(/\{(\d+)\}/g,
function(m,i){
return args[i];
});
}
// sample
"<a href='{0}' target='_blank'>{1}</a>".format(row._id, row.name);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment