Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 158961362
ITEM: 201989367
Give your team spirit a versatile look with this Washington Nationals Rise Performance Adjustable Hat by Nike It features chainstitch embroidery and cursive script that provides a timeless design A snap closure lets you quickly and easily adjust the fit of this Washington Nationals hat
Features and Benefits
Curved bill
Machine wash, tumble dry low
Dri-FIT technology wicks away moisture
Snap Closure
Material: 100% Polyester
Cursive team name embroidered across the back
Six panels with eyelets
Team logo in chainstitch embroidery at center front
Brand: Nike
Imported
Officially licensed
Low Crown
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();