I am experienced in Python, but relatively new to the Javascript language. I know in Python, if I want to substitute a variable into a string (for instance) I could do it this way:
s = "%s:%s" % (mins, secs)
However, I can't find an equivalent way to substitute values in Javascript. Does something like this exist, or am I going about this the wrong way?