ES6 Tagged template literals

by Csaba Hellinger

JavaScript

function tag(strings, ...values) {
	console.log(strings.raw);
	console.log(values);    
}

var s = tag`hello ${1+1} world`;