/ Published in: JavaScript
Example:
var result = "Hello {0}! This is {1}.".format("world","foo bar");
Returns:
"Hello World! This is foo bar."
You need to login to post a comment.
jasonseney on 10/13/08
javascript format String sprintf printf
5 people have marked this snippet as a favorite
jasonseney
ntulip
unnamedd
hlfcoding
guo3823538
Example:
var result = "Hello {0}! This is {1}.".format("world","foo bar");
Returns:
"Hello World! This is foo bar."
You need to login to post a comment.