BETA
typescript
Nickname
Ruolo
Seleziona
Studente
Designer
Sviluppatore
Esploratore
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
Qual è la sintassi corretta per dichiarare una variabile di tipo string in TypeScript?
let nome = 'string';
let nome: string;
string nome;
nome: string;
Tempo residuo
Domanda
0
di
0
Come si definisce una funzione che restituisce un numero in TypeScript?
function somma(): string { return 10; }
function somma: number() { return 10; }
function somma(): number { return 10; }
function somma() number { return 10; }
Tempo residuo
Domanda
0
di
0
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 crea un tipo alias in TypeScript?
alias ID = string | number;
let ID: string | number;
type ID = string | number;
typedef ID = 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
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 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 specifica una funzione come parametro di un'altra funzione in TypeScript?
function esegui(callback: function) {}
function esegui(callback: () -> void) {}
function esegui(callback: () => void) {}
function esegui(callback: void()) {}
Tempo residuo
Domanda
0
di
0
Come si utilizza il tipo Record in TypeScript per creare un oggetto con chiavi di tipo string e valori di tipo number?
type MyObject = { [key: string]: number };
type MyObject = Record<string, number>;
type MyObject = { string: number };
type MyObject = Record<number, string>;
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 estende un'interfaccia in TypeScript?
interface Admin implements User {}
interface Admin inherit User {}
interface Admin extends User {}
interface Admin include User {}
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
Come si usa ReadonlyArray<T> in TypeScript?
const arr: Array<number> = [1, 2, 3];
const arr: readonly number[] = [1, 2, 3];
const arr: ImmutableArray<number> = [1, 2, 3];
const arr: ReadonlyArray<number> = [1, 2, 3];
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
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
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
Come si utilizza il tipo Partial<T> in TypeScript per creare un oggetto con tutte le proprietà opzionali?
type PartialUser = Optional<User>;
type PartialUser = PartialType<User>;
type PartialUser = Partial<User>;
type PartialUser = { [P in keyof User]: User[P] | undefined };
Tempo residuo
Domanda
0
di
0