TS Quiz
Progreso1/25
Pregunta 1 de 25

What is the type of result?

typescript
function wrap<T>(value: T): T[] {
  return [value];
}

const result = wrap("TS");