Variable: CountryAlpha3
ts
const readonly CountryAlpha3: string[];Array of all ISO 3166-1 alpha-3 country codes.
Provides a convenient list of three-letter country codes for validation, API integration, and standardized country identification.
Examples
typescript
// Validate an alpha-3 code
const isValidCode = CountryAlpha3.includes("USA"); // truetypescript
// Find country by alpha-3 code
const country = Country.find((c) => c.alpha3 === "CAN");