🇧🇭Bahrain Governorates
All 5 Bahrain subdivisions with ISO 3166-2:BH codes - Asia / Western Asia
Total
5 subdivisions
Types
Governorate
ISO Standard
ISO 3166-2:BH
Code Example
import { subdivision } from '@koshmoney/countries';
// Get all Bahrain subdivisions
const subs = subdivision.getByCountry('BH');
// => 5 subdivisions
// Look up a specific subdivision
subdivision.get('BH-13');
// => { code: 'BH-13', name: 'Al Manāmah', type: 'Governorate' }
// Validate a subdivision code
subdivision.isValidCode('BH-13'); // true
subdivision.isValidRegion('BH', '13'); // trueTree-Shaking Tip
Import only Bahrain subdivisions to minimize bundle size:
// Import only Bahrain subdivisions for smaller bundles
import { subdivisions } from '@koshmoney/countries/subdivision/BH';
Object.entries(subdivisions);
// => 5 entriesAll Bahrain Governorates
| Code | Name | Type |
|---|---|---|
| BH-13 | Al Manāmah | Governorate |
| BH-14 | Al Janūbīyah | Governorate |
| BH-15 | Al Muḩarraq | Governorate |
| BH-16 | Al Wusţá | Governorate |
| BH-17 | Ash Shamālīyah | Governorate |
FAQ
- How many subdivisions does Bahrain have?
- Bahrain has 5 subdivisions defined in ISO 3166-2:BH, including 5 governorates.
- What is the ISO 3166-2 code format for Bahrain?
- Bahrain subdivision codes follow the format BH-XX, where BH is the country's alpha-2 code and XX is the subdivision identifier. For example, BH-13 represents Al Manāmah.
- How to get Bahrain subdivisions in JavaScript?
- Install
@koshmoney/countriesvia npm, then usesubdivision.getByCountry('BH')to get all 5 subdivisions.
Use Bahrain subdivision data in your project
Get all 5 Bahrain subdivisions with ISO 3166-2 codes, plus countries, currencies, postal codes, and more.
npm install @koshmoney/countries