BETA
typescript
Nickname
Ruolo
Seleziona
Studente
Designer
Sviluppatore
Esploratore
Come si dichiara una variabile di tipo array di stringhe in TypeScript?
let arr: string[];
let arr: [string];
let arr: array<string>;
let arr: strings[];
Tempo residuo
Domanda
0
di
0
Come si definisce un array di numeri in TypeScript?
let numeri: number[];
let numeri: [number];
let numeri: array<number>;
let numeri: numbers[];
Tempo residuo
Domanda
0
di
0
Come si crea un'interfaccia per un oggetto con proprietà nome (string) e età (number)?
interface Persona { nome: string, età: number }
interface Persona { nome: 'string'; età: 'number'; }
interface Persona { nome = string; età = number; }
interface Persona { nome: string; età: number; }
Tempo residuo
Domanda
0
di
0
Come si specifica un parametro opzionale in una funzione TypeScript?
function saluta(?nome: string) {}
function saluta(nome?: string) {}
function saluta(nome: string?) {}
function saluta(opzionale nome: string) {}
Tempo residuo
Domanda
0
di
0
Quale tipo si utilizza per una variabile che può contenere sia un numero che una stringa?
let valore: number | string;
let valore: number || string;
let valore: any;
let valore: string | number[];
Tempo residuo
Domanda
0
di
0
Come si definisce un parametro con valore predefinito in una funzione TypeScript?
function saluta(nome: string = 'Guest') {}
function saluta(nome: ?string = 'Guest') {}
function saluta(nome: string ?= 'Guest') {}
function saluta(nome = 'Guest': string) {}
Tempo residuo
Domanda
0
di
0
Una tupla permette di specificare un array con un numero fisso di elementi di tipi specifici.
let persona: [string, number];
let persona: (string, number);
let persona: string | number;
let persona: {string, number};
Tempo residuo
Domanda
0
di
0
Come si utilizza il tipo Partial in TypeScript?
let config: Optional<Config>;
let config: PartialConfig;
let config: Config?;
let config: Partial<Config>;
Tempo residuo
Domanda
0
di
0
Come si definisce una classe astratta in TypeScript?
abstract class Forma {}
class abstract Forma {}
class Forma abstract {}
abstract Forma class {}
Tempo residuo
Domanda
0
di
0
Qual è il risultato dell'assegnazione 'let x: never = 5;' in TypeScript?
x sarà undefined
Errore di compilazione
x sarà null
x sarà 5
Tempo residuo
Domanda
0
di
0
Come si crea un tipo unione in TypeScript?
let id: string || number;
let id: string, number;
let id: string | number;
let id: [string, number];
Tempo residuo
Domanda
0
di
0
Come si definisce un'interfaccia con una proprietà facoltativa in TypeScript?
interface Persona { nome: string?; }
interface Persona { ?nome: string; }
interface Persona { nome: ?string; }
interface Persona { nome?: string; }
Tempo residuo
Domanda
0
di
0
Come si usa il tipo NonNullable<T> in TypeScript?
type Safe = Nullable<string>;
type Safe = string & null;
type Safe = string | undefined;
type Safe = NonNullable<string | null>;
Tempo residuo
Domanda
0
di
0
Qual è l'uso del tipo Extract<T, U> in TypeScript?
type Result = Extract<'a' & 'b' & 'c', 'a' | 'c'>;
type Result = Extract<'a' | 'b' | 'c', 'a' | 'c'>;
type Result = Extract<'a' | 'b' | 'c', 'b'>;
type Result = Extract<'a' | 'b' | 'c', 'a' & 'c'>;
Tempo residuo
Domanda
0
di
0
Come si utilizza il tipo Readonly<T> in TypeScript?
type ReadOnlyUser = Readonly<User>;
type ReadOnlyUser = Const<User>;
type ReadOnlyUser = Static<User>;
type ReadOnlyUser = Final<User>;
Tempo residuo
Domanda
0
di
0
Qual è l'output dell'uso di typeof su una funzione in TypeScript?
Il nome della funzione
Il valore di ritorno della funzione
Il tipo della funzione
Il tipo dei parametri della funzione
Tempo residuo
Domanda
0
di
0
Come si usa il tipo Exclude<T, U> in TypeScript?
type Result = Exclude<'a' & 'b' & 'c', 'a' | 'c'>;
type Result = Exclude<'a' | 'b' | 'c', 'a' | 'c'>;
type Result = Exclude<'a' | 'b' | 'c', 'a' & 'c'>;
type Result = Exclude<'a' | 'b' | 'c', 'b'>;
Tempo residuo
Domanda
0
di
0
Cosa fa il tipo ReturnType<T> in TypeScript?
Restituisce tutti i tipi di una funzione
Verifica se un tipo è una funzione
Combina i tipi di input di una funzione
Restituisce il tipo di ritorno di una funzione
Tempo residuo
Domanda
0
di
0