Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
This item may ship from a different location therefore only eligible for ground shipping. Additionally, this item is not eligible for APO/FPO delivery.
STYLE IT WITH
about this product
SKU: 152111009
ITEM: 40292
Kick back and relax on the CORE Equipment Double Hammock. The diamond ripstop nylon construction delivers a soft feel and durability, while the 10-foot tree straps and carabiners provide quick and easy setup. The 19 loops on each tree strap make it easy to adjust the height, while 14 webbing loops and a built-in side pocket let you keep personal items handy.
Features and Benefits
Made of 300-thread, 40D diamond ripstop nylon for a soft feel and durability
10-foot tree straps and carabiners provide quick and easy setup
19 loops on each tree strap make it easy to adjust the height to suit your needs
14 webbing loops and a built-in side pocket let you keep personal items handy
Carry bag offers simple transport and storage
Supports up to 500 pounds
Specifications
Maximum weight capacity (lb.): 500
Product Type: Hammock
Activity: Camping
Manufacturer warranty - general: 1 year limited
Product length: 120
What's in the Box
CORE Equipment Double Hammock
Carry bag
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();