Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 163016138
ITEM: 202459060
Top off your look with this New York Yankees Rise Adjustable Hat from NikeFeaturing Dri-FIT technology this cap wicks away moisture to keep you cool and comfortable throughout the day The roomy modern fit and high-depth design deliver a sporty and stylish look while the embroidered monotone wordmark and team logo add a touch of refined team spirit
Features and Benefits
Material 100 Polyester
Move To Zero is Nike's journey toward zero carbon and zero waste to help protect the future of sport
Six-panel construction with eyelets for enhanced breathability
Dri-FIT technology wicks away moisture
Curved bill
Mid Crown
Structured fit
Wipe clean with a damp cloth
Brand: Nike
Officially licensed
Imported
One size fits most
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();