In python & other programming languages there's a way to substitute a variable's value in between a string easily, like this,
name="python"
a="My name is %s"%name
print a
>>>My name is python
How do I achieve this in java-script? The plain old string concatenation is very complex for a large string.