Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 133125641
ITEM: N.100.4567.910.05
Play all day with the Nike Playground Graphic Mini Football. This mini football features a 100% rubber construction that withstands the elements for long-lasting use. The tacky, textured surface helps improve grip and control, while the engineered shape for tighter spirals
Features and Benefits
100% rubber construction withstands the elements
Tacky, textured surface helps improve grip and control
Engineered shape for tighter spirals
Nike graphic print adds sporty style
Specifications
Product Type: Footballs
Cover Material: Rubber
Quantity: 1
Activity: Football
Core material:
Cover material:
What's in the Box
Nike Playground Graphic Mini Football
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();