Get List of Supported Currencies
问题 Other than just guessing (like I've done below), is there a more direct and efficient way of reflectively retrieving a list of all currencies supported by your JavaScript environment? function getSupportedCurrencies() { function $(amount, currency) { let locale = 'en-US'; let options = { style: 'currency', currency: currency, currencyDisplay: "name" }; return Intl.NumberFormat(locale, options).format(amount); } const getAllPossibleThreeLetterWords = () => { const chars =