Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 158151095
ITEM: 200874770
Get ready to cheer on the Stanford Cardinal with this 2024 Sideline Trucker Adjustable Hat from Nike This Stanford Cardinal hat features a classic trucker design with solid front panels and mesh mid and rear panels offering a blend of style and breathability The embroidered team lettering across the crown proudly displays your Cardinal pride making it a must-have accessory for any fan
Features and Benefits
Brand Nike
Mesh mid and rear panels
Officially licensed
Mid Crown
One size fits most
Wipe clean with a damp cloth
Curved bill
Embroidered team lettering across the crown
Woven clip tag
Structured fit
Solid front panels with eyelets
Imported
Specifications
Age Group: Toddlers'
Gender: Girls',Boys'
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();