One difference with eval
is that template literals are parsed at compile time, while the argument to eval
only gets parsed at run-time, when eval
is executed.
Related to this, is that eval
can get a dynamically built argument, while a template literal is ... literal: it cannot be stored as a template variable, which you could build dynamically, move around and eventually parse: there is no "template variable" data type. A tag function does not actually get a template variable as argument, but the parsed components of it, which are known at compile-time.
Some examples
With eval
you can have this situation:
var code = prompt('enter some evil code');
eval(code);
But that is not possible with template literals:
var literal = prompt('enter some evil template literal');
tag literal; // there is no data type or syntax for this.
`${literal}`; // and this just gives you the entered string.
What is possible, is this:
var str = prompt('enter some string');
tag`${str}`;
But that does not lead to unwanted code execution, at least not worse than this:
var str = prompt('enter some string');
myfunc(str);
Any function calls must already be encoded literally in a template literal. Values of string variables cannot change that. There is no way a variable function gets called by a template literal. This:
`${func(str)}`;
...will call func
, and that function only. It is chosen by the programmer.
A rather evil template literal
Having said that, this is still possible:
var func = prompt ("enter some evil function name (suggestion: 'alert')");
var param = prompt ("now provide an argument for " + func);
`${window[func](param)}`;
But it is evident that the program willingly opens up the possibility to execute any function on the global object. Then indeed, you are getting close to the evilness of eval
.
Note that the same effect is achieved with:
window[name](param);
The most evil template literal
As commented, then you might as well make this template literal:
`eval(str)`;
... and so the evil part is not so much in the template literal, but the generic function call you have designed to be in it. For that you don't need template literals or eval
, but a bad programmer ;-)
On the Example
You gave this example:
let ii = 1;
function counter() {
return ii++;
}
console.log(`${counter()}, ${ii++}, ${counter()}`);
This executes your counter
function, but the difference with eval
is that the string literal was already there at design time, and could not have been constructed at run-time. This code is designed to increment your counter, and is not essentially different from:
console.log(counter() + ', ' + (ii++) + ', ' + counter());
Compile Time
To stress the difference of compile/run time parsing, note that you cannot run code with a template literal that does not have valid syntax.
Compare these two scripts:
alert('press OK');
eval('alert("hello)');
and:
alert('press OK');
`${alert("hello)}`;
Note the syntax error. The first script will only notice the syntax error at run-time when the argument to eval
is parsed, while the second script will not even run, and give the syntax error immediately.
Put more exactly, eval
executes a new script, with its own compile and run phases. A template literal is parsed/compiled like other code.