Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 149143659
ITEM: 200526986
Capture your team's distinct identity in a new and innovative design when you grab this LeBron James Cleveland Cavaliers Icon Authentic jersey It features classic trims and team graphics along with Nike's AeroSwift technology for added comfort Before you head to the next Cleveland Cavaliers game grab this incredible jersey so everyone knows your fandom is on the cutting edge
Features and Benefits
Brand Nike
Overlapping hem with side splits
Machine wash with garment inside out, tumble dry low
Perforated mesh design for airflow
Nike AeroSwift technology delivers exceptional mobility and lightweight comfort
Imported
Armholes with angled shoulder seams are shaped for mobility
Material: 100% Recycled Polyester
Stitched tackle twill team and player details for an authentic look
Authentic
Sleeveless
Jersey Color Style: Icon
Specifications
Product Type: Jerseys
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();