✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Is the code below correct? What is the result of compilation of this code?
function loggingIdentity<Type>(arg: Type): Type { console.log(arg.length); return arg;}