Backtick and function

I’ve a question about backtick pass argument in a function, I know is used for Template literals

function test (e){console.log(e)};

test`My backtick pass  is an array`;

the result is an Array [ ‘My backtick pass is an array’ ] , Where find documentation about it?

Hey there,

so what is your question?

I like this explanation:

1 Like