Teplate string
12345678910
const div = (strings, ...args) =>
strings.reduce(
(acc, currentString, index) => acc + currentString + (args[index] || ''),
''
);
const firstName = 'Paul';
const lastName = 'Kotov';
const template = div`Hello ${firstName} ${lastName}!`;
console.log(template);
JavaScript
INFO