Solución
solution.tsTypeScript
export function describe(val: unknown): string {
if(typeof val !== 'string' && typeof val !== 'number' && typeof val !== 'boolean') return "otro"
return `${typeof val}: ${typeof val === "string"? `"${val}"`:val}`;
}0respuestas