Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 149171983
ITEM: 200061125
When the Los Angeles Lakers hit the court your youngster will be ready to watch LeBron James lead the team to victory when they have this Swingman jersey from Nike With a bold Icon Edition build and Dri-FIT technology this jersey lets them show support in comfort with an authentic on-court design
Features and Benefits
Material 100 Polyester
Machine wash with garment inside out, tumble dry low
Dri-FIT technology wicks away moisture
Swingman
Jersey Color Style: Icon
Rubberized heat sealed graphics
Fabric applique
Double-knit fabric with mesh texture
V-neck
Officially licensed
Standard fit for a relaxed, easy feel
Satin woven jock tag
Specifications
Clothing Type: Jerseys
Product Type: Jerseys
Age Group: Youth
Style: Swingman
Activity: Basketball
Features: Moisture Wicking
Gender: Boys'
Care: Machine wash with garment inside out, tumble dry low
Player Name: LeBron James
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();