Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 157663726
ITEM: 201119523
Rep your New York Yankees in this stylish 59FIFTY Fitted Hat from New Era The 59FIFTY is New Era's original fitted cap and the brand's flagship style making this hat an instant classic for any New York Yankees fan With its high crown and structured fit this hat provides a modern and comfortable look that's perfect for game day or any day
Features and Benefits
High Crown
Fitted
Structured fit
Wipe clean with a damp cloth
Contrast-color undervisor
Team color visor
Flat bill with ability to curve
Officially licensed
Imported
Embroidered team logo across the front
The 59FIFTY is the originator of the true fitted cap and the brand's flagship style
Material: 100% Polyester
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();