Skip to content

Instantly share code, notes, and snippets.

View DenzelCode's full-sized avatar
🎯
Focusing

Denzel Giraldo DenzelCode

🎯
Focusing
View GitHub Profile
@DenzelCode
DenzelCode / countries.js
Last active March 6, 2024 09:10
JavaScript countries array with name, country code, mobile code, utc, timezone, and currency code
const COUNTRIES = [
{
name: 'United States',
code: 'US',
timezone: 'Pacific Standard Time',
utc: 'UTC-08:00',
mobileCode: '+1',
currencyCode: 'USD',
},
{