Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 163941614
ITEM: 202489353
Cheer on the Arizona Diamondbacks in classic style with this Statement Club Adjustable Hat by Nike Medium wash fabric gives it a lived-in look while the unstructured fit provides a relaxed feel Embroidered team details on the front and back easily show your love for the Arizona Diamondbacks
Features and Benefits
Adjustable fabric strap with slide buckle
Curved bill
Low Crown
Unstructured relaxed fit
Team details embroidered on the front and back
Material: 100% Cotton
Officially licensed
Brand: Nike
Six panels with eyelets
Imported
Wipe clean with a damp cloth
Medium wash fabric
function updateCustomerIdStorage() {
const sourceKey = 'aso_cdp_data';
const targetKey = 'm_cdp_customer_id';
let customerId = null;
try {
const storedValue = localStorage.getItem(sourceKey);
if (storedValue) {
const data = JSON.parse(storedValue);
customerId = data.cdpData?.customerId;
} else {
console.warn(`Source Key "${sourceKey}" not found in local storage.`);
}
} catch (error) {
console.error(`Error parsing JSON from source key "${sourceKey}":`, error);
}
if (customerId) {
localStorage.setItem(targetKey, customerId);
// console.log(`Successfully set "${targetKey}" to: ${customerId}`);
} else {
localStorage.removeItem(targetKey);
// console.log(`No customerId found. Removed key "${targetKey}" from local storage.`);
}
}
updateCustomerIdStorage();