Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 160325710
ITEM: 202768673
Give your New York Yankees look an upgrade with this Aaron Judge Road Limited Player Jersey by Nike Designed to mirror the on-field jersey its double-knit mesh fabric provides a breathable and comfortable feel The Vapor Premier chassis allows for a full range of motion and teams up with Dri-FIT ADV technology to keep you cool and dry whether you're in the stands or out on the town
Features and Benefits
Faux stitch player name and numbers
Embroidered Swoosh logo
Machine wash, tumble dry low
MLB Batterman silhouette below back seam yoke
Nike Limited
Jersey Color Style: Road
Short sleeve
Dri-FIT ADV technology combines moisture-wicking fabric with advanced engineering and features to help you stay dry and comfortable
Woven jock tag
Imported
Player name and number height is larger for 2025, ranging from 2.8-3.6 to match on-field jersey (previously 2)
Rounded hem
Specifications
Origin: Imported
Compression: No
Clothing Type: Jerseys
Neckline: Crew Neck
Sleeve length: Short Sleeve
Material technology: Dri-FIT ADV technology
Activity: Baseball
Material: Double-knit mesh fabric
Heat Retention: No
Gender: Men's
Size Range: Men's
Moisture Wicking: Yes
Care: Machine wash, tumble dry low
Product Type: Shirts
Flame Resistant: No
Age Group: Adults'
Style: Player Jerseys
Features: Moisture Wicking
Hood: No
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();