Skip to content

Instantly share code, notes, and snippets.

@davidchase
Last active August 29, 2015 14:05
Show Gist options
  • Save davidchase/437b752306267aba1e2c to your computer and use it in GitHub Desktop.
Save davidchase/437b752306267aba1e2c to your computer and use it in GitHub Desktop.
Format Utility
var format = function () {
var args = Array.apply(null, arguments);
var initial = args.shift();
var replacer = function (text, replacement) {
return text.replace('%s', replacement);
}
return args.reduce(replacer, initial);
}
// usage:
// var myName = 'david';
// format('hello %s', myName);
// prints hello david
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment