40V 12" Cordless Battery Chainsaw (Tool Only) | Greenworks Tools (2024)

Skip to product information
  • 40V 12" Cordless Battery Chainsaw (Tool Only) | Greenworks Tools (1)

  • 40V 12" Cordless Battery Chainsaw (Tool Only) | Greenworks Tools (2)

  • 40V 12" Cordless Battery Chainsaw (Tool Only) | Greenworks Tools (3)

  • 40V 12" Cordless Battery Chainsaw (Tool Only) | Greenworks Tools (4)

  • 40V 12" Cordless Battery Chainsaw (Tool Only) | Greenworks Tools (5)

  • 40V 12" Cordless Battery Chainsaw (Tool Only) | Greenworks Tools (6)

  • 40V 12" Cordless Battery Chainsaw (Tool Only) | Greenworks Tools (7)

1 / of 8

greenworkstools

40V 12" Cordless Battery Chainsaw (Tool Only)

SKU 2020002T

MODEL# CS40B210

Trim and cut those pesky tree limbs

  • Chain/Bar Length: 12"
  • Up to 50 cuts w/ 2.0 Ah battery(not included)
  • What's Included: Tool only, battery and charger sold separately.
  • Power 75+ Tools with any Greenworks 40V Battery
  • 3-Year Limited Tool Warranty

View more details

Regular price $119.99

Sale price $119.99 Regular price $119.99

Unit price / per

Sale Sold Out

Earn loyalty points

`; let position; if (coord?.lat === undefined){ position = { lat: -25.344, lng: 131.031 }; }else{ position = {lat: coord.lat, lng: coord.lon}; } // Request needed libraries. //@ts-ignore const { Map } = await google.maps.importLibrary("maps"); const { AdvancedMarkerElement } = await google.maps.importLibrary("marker"); //create at current position // const new_map = new Map(document.getElementById("map"), { // zoom: 10, // center: position, // mapId: "INITIAL_PLACE", // }); map.setCenter(position); map.setZoom(10); // The marker const marker = new AdvancedMarkerElement({ map: map, position: position, title: "Your Location", }); let index = 1; for (const i of locationList) { const utcDate = moment.utc(i.availabilityDate).format('MM/DD/YYYY'); const promiseD = new Date(utcDate); const distance = parseInt(i.distanceInMiles); const storeName = i.displayName; const address = i.address; const locaId = i.locationId; let li = document.createElement("li"); li.id = `location_list_${index}`; li.role = "option"; li.innerHTML = `

Store: ${storeName}

Pick Up Date: ${promiseD.toDateString()}

Distance: ${distance} miles

`; selection_html.appendChild(li); addMarker({ lat: i.latitude, lon: i.longitude }, storeName, address, map); index += 1; } dropdown_menu();}const fetchBB = async(postalCode, coord, map) => { const bby_search_button_h = document.getElementById("bby_search_button"); const bby_map_loading_h = document.getElementById("bby_map_loading"); bby_search_button_h.classList.remove("hidden"); bby_map_loading_h.classList.remove("hidden"); const quantity_input = document.getElementsByClassName("quantity__input"); const warning = document.getElementById("warning"); let quantity = 1; if (quantity_input.length != 0){ quantity = quantity_input[0].value; } const shopName = "greenworkstools.myshopify.com"; const customerId = ""; const checkProduct = await checkProductAvailability(shopName, customerId); if(checkProduct.error){ console.log(checkProduct.error); warning.innerHTML = checkProduct.error; const bby_search_button = document.getElementById("bby_search_button"); bby_search_button.classList.add("hidden"); const bby_map_loading = document.getElementById("bby_map_loading"); bby_map_loading.classList.add("hidden"); return; } if(!postalCode){ warning.innerHTML = "Invalid Zip Code"; const bby_search_button = document.getElementById("bby_search_button"); bby_search_button.classList.add("hidden"); const bby_map_loading = document.getElementById("bby_map_loading"); bby_map_loading.classList.add("hidden"); return; } const loca_url = `${BBY_API_URL}/getLocationBySku/${shopName}?countryCode=US&postalCode=${postalCode}`; const body_loca = { "products": [{"sku": checkProduct.data.bestBuySku, "qty": quantity}] }; const response_loca = await fetch(loca_url, { method: "POST", headers: { 'Content-Type': 'application/json', 'Access-Control-Allow-Origin': 'null', }, body: JSON.stringify(body_loca) }); const result_loca = await response_loca.json(); if (result_loca.error){ warning.innerHTML = `${result_loca.error}`; const bby_search_button = document.getElementById("bby_search_button"); bby_search_button.classList.add("hidden"); const bby_map_loading = document.getElementById("bby_map_loading"); bby_map_loading.classList.add("hidden"); return; } console.log("loca response: ", result_loca); warning.innerHTML = ""; await updateLocationList(result_loca, coord, map); const bby_search_button_hide = document.getElementById("bby_search_button"); bby_search_button_hide.classList.add("hidden"); const bby_map_loading = document.getElementById("bby_map_loading"); bby_map_loading.classList.add("hidden"); selectBtn.classList.remove("hidden");}async function getLocaByUPC() { const input = document.getElementById("PostalCode_in"); const postalCode = document.getElementById("postal_code"); const pc_input = input.value; postalCode.value = input.value; const warning = document.getElementById("warning"); console.log(pc_input); const coord = await getCoordByPC(pc_input); customSelect.classList.remove("hidden"); if (coord){ warning.innerHTML = ""; // map = updateMap(coord); fetchBB(pc_input, coord, map); }else{ warning.innerHTML = `Cannot Locate Zip Code ${pc_input}`; }}// async function getProductInfo(){// const productSku = "2020002T";// const url = `${BBY_API_URL}/getProductInfo/${shopName}?sku=${productSku}`;// const no_shipping = document.getElementById("no_shipping")// const resp = await fetch(url, {// method: "GET",// headers: {// 'Content-Type': 'application/json',// 'Access-Control-Allow-Origin': 'null',// },// });// const result = await resp.json();// // console.log(result.data);// if (result.error){// console.log(result.error);// return;// }// else{// let locationId;// const location_inv = result.data?.inventoryItems?.edges[0]?.node?.inventoryLevels?.edges;// const inventoryItemId = result.data?.inventoryItems?.edges[0]?.node?.id.replace("gid://shopify/InventoryItem/", "");// // console.log(inventoryItemId);// if (location_inv){// for(const invlevel of location_inv){// if(invlevel.node?.location?.name == "Best Buy"){// locationId = invlevel.node?.location?.id.replace("gid://shopify/Location/", "");// }// // console.log(invlevel.node?.location?.name);// // console.log(invlevel.node?.quantities[0]?.quantity);// if(invlevel.node?.location?.name != "Best Buy" && parseInt(invlevel.node?.quantities[0]?.quantity) > 0){// no_shipping.value = "false";// return {// canProductShip: true// };// }// }// const button_submit = document.getElementsByName("add");// button_submit[0].disabled = true;// button_submit[0].innerHTML = "SOLD OUT"// return {// canProductShip: false,// locationId: locationId,// inventoryItemId: inventoryItemId// };// }// }// }const shopName = "greenworkstools.myshopify.com";const customerId = "";const csAddr = null;console.log("csaddress: ",csAddr);// checkTestModeAndProductAvailability(shopName, customerId);initMap();checkProductAvailability(shopName, customerId);// getProductInfo();// if(csAddr){// setTimeout(function (){// getLocaByUPC(); // }, 2000);// }handlePermission();

View full details

Sale price $119.99

Close

40V 12" Cordless Battery Chainsaw (Tool Only) | Greenworks Tools (8)

Click image to zoom

40V 12" Cordless Battery Chainsaw (Tool Only)

Product Images

40V 12" Cordless Battery Chainsaw (Tool Only) | Greenworks Tools (9)

40V 12" Cordless Battery Chainsaw (Tool Only) | Greenworks Tools (10)

40V 12" Cordless Battery Chainsaw (Tool Only) | Greenworks Tools (11)

40V 12" Cordless Battery Chainsaw (Tool Only) | Greenworks Tools (12)

40V 12" Cordless Battery Chainsaw (Tool Only) | Greenworks Tools (13)

40V 12" Cordless Battery Chainsaw (Tool Only) | Greenworks Tools (14)

40V 12" Cordless Battery Chainsaw (Tool Only) | Greenworks Tools (15)

Details

Key features

  • Robust 12-inch steel chain and bar with tool-less chain tensioning offers ease of use while delivering the highest cutting performance
  • The 3/8-inch chain pitch delivers the right amount of capabilities to get those limbs trimmed and cut with minimal kickback
  • The automatic oiler applies oil to the bar and chain when needed to ensure durability and optimal use with a translucent oil tank for a clear view of the oil level
  • Wrap around handle for multiple cutting positions to provide ease of use when trimming at different angles
  • Tool only, battery and charger sold separately.

The No List

No Gas Smell.

No Emissions.

No Maintenance.

Low Noise.


Owner's Manual

40V 12" Cordless Battery Chainsaw (Tool Only) | Greenworks Tools (16) 40V 12" Cordless Battery Chainsaw (Tool Only) | Greenworks Tools (17)

Download Now

How to Videos

40V 12" Cordless Battery Chainsaw (Tool Only) | Greenworks Tools (18) 40V 12" Cordless Battery Chainsaw (Tool Only) | Greenworks Tools (19)

Warranty

40V 12" Cordless Battery Chainsaw (Tool Only) | Greenworks Tools (20) 40V 12" Cordless Battery Chainsaw (Tool Only) | Greenworks Tools (21)

Warranty + Service

3 year tool limited warranty

3 year battery warranty

Dedicated Support 1-888-909-6757

Power 75+ Tools with any Greenworks 40V Battery

Compatible Parts and Accessories

40V 12" Cordless Battery Chainsaw (Tool Only) | Greenworks Tools (22)

Scabbard for 12" Chainsaws/Pole Saws

Scabbard for 12" Chainsaws/Pole Saws

Regular price $7.99

Sale price $7.99 Regular price $7.99

Unit price / per

Earn loyalty points

40V 12" Cordless Battery Chainsaw (Tool Only) | Greenworks Tools (23)

Regular price $19.99

Sale price $19.99 Regular price $19.99

Unit price / per

Earn loyalty points

Get it in ${data.est_delivery_days}* business days.

40V 12" Cordless Battery Chainsaw (Tool Only) | Greenworks Tools (2024)

References

Top Articles
Latest Posts
Recommended Articles
Article information

Author: Errol Quitzon

Last Updated:

Views: 5608

Rating: 4.9 / 5 (79 voted)

Reviews: 86% of readers found this page helpful

Author information

Name: Errol Quitzon

Birthday: 1993-04-02

Address: 70604 Haley Lane, Port Weldonside, TN 99233-0942

Phone: +9665282866296

Job: Product Retail Agent

Hobby: Computer programming, Horseback riding, Hooping, Dance, Ice skating, Backpacking, Rafting

Introduction: My name is Errol Quitzon, I am a fair, cute, fancy, clean, attractive, sparkling, kind person who loves writing and wants to share my knowledge and understanding with you.