In Python there is a string fromatter like;
>>> print 'Name :%s Surname :%s'%('Ahmet','DAL')
Name :Ahmet Surname :DAL
Are there any native string formating method in Javascript, which has simple usage as Python has?
Edited: There are methods which is using external library like "sprintf", etc. But I'm just curious, Is there a native method in Javascript?
Thank You!