Skip to content

Instantly share code, notes, and snippets.

@twhite96
Created October 24, 2015 22:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save twhite96/64ef407765f00bbbc981 to your computer and use it in GitHub Desktop.
Save twhite96/64ef407765f00bbbc981 to your computer and use it in GitHub Desktop.
Template_string.js
//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
;
});
};
}
"{0} is dead, but {1} is alive! {0} {2}".format("ASP", "ASP.NET")
outputs
ASP is dead, but ASP.NET is alive! ASP {2}
@twhite96
Copy link
Author

To use template strings in JavaScript ES6 without a library for older browsers.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment