Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 145615241
ITEM: DR9362-608
Whether you're on a jog at the gym or winding down at home take your Miami Heat fandom to the next level by sporting these Courtside Versus Force shorts from Nike They feature authentic Miami Heat graphics and a split colorway to show everyone your Miami Heat spirit runs in your DNA Best of all the Dri-FIT performance technology keeps you fresh while the zippered side pocket securely holds essentials throughout the day
Features and Benefits
Officially licensed
Inseam on size M measures approx. 9.5''
Machine wash with garment inside out, tumble dry low
Imported
Dri-FIT technology wicks away moisture
One side zippered pocket
Elastic waistband with drawstring
Brand: Nike
Move To Zero is Nike's journey toward zero carbon and zero waste to help protect the future of sport. Apparel labeled sustainable materials is made with at least 55% recycled content.
Two side pockets
Material: 100% Polyester
Heat-sealed graphics
Specifications
Product Type: Shorts
Age Group: Adults
Gender: Men's
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();