Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 159163864
ITEM: CD6864-034
Your little one will stay active for hours with the Nike Kids' Air Max 90 Shoes. The real and synthetic leather construction offers a long-lasting and classic feel, and the '90s design adds a timeless feel. The Max Air unit ensures bendable comfort with every step, and the Nike Swoosh logo shows your brand pride.
Features and Benefits
Real and synthetic leather material provides durability and a high-end feel
Roomy shape offers space for feet to grow without getting crammed
Max Air unit delivers flexible cushioning with every step
Padding around the ankles allows for easy slip-on and removal
'90s design adds a vintage look
Nike Swoosh logo showcases your brand support
Specifications
Slip Resistant: No
Waterproof: No
Closure: Lace-Up
Product Type: Shoes
Age Group: Kids'
Style: Athletic Shoes & Sneakers
Activity: Casual
Material: Real and synthetic leather
Gender: Girls',Boys'
Electrical hazard (EH) rated: No
Shoe Height: Low Top
Water Resistant: No
What's in the Box
Nike Kids' Grade School Air Max 90 Shoes
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();