Why the string parameter behaves differently depending on how it was defined?
function a(s) { console.log(...s) } a (`cde`) //prints c d e a (\'cde\') //pri