“szablon dosłowne” Kod odpowiedzi

szablon dosłowna składnia

`half of 100 is ${100 / 2}`
Crazy Cobra

szablon dosłowne

/** A template literal produces a new string literal type by concatenating
    the contents. When a union is used in the interpolated position, the 
    type is the set of every possible string literal that could be 
    represented by each union member: */

type Taste = "Delicious" | "Spicy";
type Food = "Pizza" | "Meat";
 
type Menu = `${Taste | Food}`;

// Menu will now be one of the following:
// 'DeliciousPizza' | 'DeliciousMeat' | 'SpicyPizza' | 'SpicyMeat'
Stupid Scarab

Odpowiedzi podobne do “szablon dosłowne”

Pytania podobne do “szablon dosłowne”

Więcej pokrewnych odpowiedzi na “szablon dosłowne” w TypeScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu