Skip to content

Instantly share code, notes, and snippets.

@nilsandrey
Last active May 2, 2024 03:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nilsandrey/c6084b5aa7ddfdd86d30fb8ecfc106d4 to your computer and use it in GitHub Desktop.
Save nilsandrey/c6084b5aa7ddfdd86d30fb8ecfc106d4 to your computer and use it in GitHub Desktop.
string.format in Javascript.
// <https://stackoverflow.com/a/4673436/2100126>
// 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
;
});
};
}
@nilsandrey
Copy link
Author

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