Skip to content

Instantly share code, notes, and snippets.

@arifsetiawan
Created July 12, 2012 10:26
Show Gist options
  • Save arifsetiawan/3097271 to your computer and use it in GitHub Desktop.
Save arifsetiawan/3097271 to your computer and use it in GitHub Desktop.
format
function format(str){
var args = arguments;
return str.replace(/{(\d+)}/g, function(match, number){
return args[parseInt(number) + 1];
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment