Are there any popular JavaScript libraries like jQuery, Underscore.js, or similar that implement 'Hello {0}!'.format('World');
or equivalent?
Is this a bad practice in JavaScript as opposed to string concatenation that it is not included, or is it just overlooked or considered too specialized for inclusion in popular libraries? Or, is there another reason?
(Please don't answer with an implementation of String.prototype.format, I'm asking for functionality in a popular library I may be overlooking.)