JavaScript Tagged шаблоны

function tagExample(strings) {
    return strings;
}

// passing argument
const result = tagExample('Hello Jack');

console.log(result);
SAMER SAEID