Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 140655631
ITEM: 179016
Hit the courts rocking the BCG Men's Diamond Mesh Basketball Shorts 7 in. The mesh fabric boosts breathability to help you stay cool, and the diamond mesh style highlights an eye-catching appearance.
Features and Benefits
Classic Fit
Mesh construction delivers comfort and airflow
Diamond mesh style adds a stylish touch
7-inch inseam
Specifications
Compression: No
Clothing Type: Athletic Shorts
Ventilated: Yes
Shorts Length: Medium
Material technology: Recycled Polyester||
Inseam (in.): 7-in. inseam
Activity: Training
Material: Mesh
Gender: Men's
Size Range: Men's
Moisture Wicking: Yes
Water Resistant: No
Product Type: Shorts
Flame Resistant: No
Age Group: Adults'
Style: Short
Lining: No
Features: Moisture Wicking
What's in the Box
BCG Men's Diamond Mesh Basketball Shorts 7 in
Shipping Restriction: Currently we are not able to ship this product to the following state(s).
MN, NY
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();