Open rauschma opened 6 years ago
The tagged template literal example in 19.1:
const getArgs = (...args) => args; assert.deepEqual( getArgs `Count: ${5}!`, [['Count: ', '!'], 5] );
should probably be using
getArgs `Count: ${num}!`,
to demonstrate the usage with the earlier template literal.
@pabigot Each of these examples stands on its own.
The tagged template literal example in 19.1:
should probably be using
to demonstrate the usage with the earlier template literal.