Menu
Your Cart

Battery for Apple MacBook Pro 15" A1707 A1820

Battery for Apple MacBook Pro 15" A1707 A1820
Battery for Apple MacBook Pro 15" A1707 A1820
  • Price: TK 4,500/-
  • Stock: In Stock
  • Model: A1707 A1820
  • MPN: A1820, A1707
TK 4,500/-
Ex Tax: TK 4,500/-

Key Features

    • Brand: For Apple
    • Model:Apple MacBook Pro 15" A1707 A1820
    • Battery Type: Lithium-Ion
    • Voltage: 11.4V
    • Battery Capacity:76Wh 6667mAh
    • warranty:6 Months
Specification
General Feature
BrandApple
ModelApple MacBook Pro 15" A1707 A1820
Part NoA1820, A1707, A1707(EMC 3072), A1707(EMC 3162), 020-01728, MacBookPro13,3, MacBookPro14,3
Power
Battery TypeLi-Ion
Battery Capacity 76Wh 6667mAh
Battery Cells2 Cells
Physical Attributes
ColorBlack
Compatible WithA1278 (EMC 2254), MacBook 13" A1278 (Late-2008), MacBook 13" Aluminum Unibody (2008 Version), MacBook 13" MB466, MacBook 13" MB466*/A, MacBook 13" MB466CH/A, MacBook 13" MB466LL/A, MacBook 13" MB466X/A.
Warranty Information
Warranty6 Month
Description

Apple MacBook Pro 15" A1707 A1820 EMC 3072 EMC 3162 Battery


At Dear IT Solution, we offer a high-quality replacement battery for your Apple MacBook Pro 15-inch model. With a robust capacity of 76Wh and 6667mAh, this Lithium-Ion battery is designed to keep your laptop powered up for extended periods, ensuring reliable performance. Operating at 11.4V, it provides the optimal power your MacBook Pro needs to function at its best.

Compatible Models

This battery is compatible with the following MacBook Pro models:

Apple MacBook Pro 15-Inch (Late 2016) & (Mid 2017) A1707
Model EMC 3072 and EMC 3162
Product Part Numbers: A1820, A1707, 020-01728
MacBookPro13,3 and MacBookPro14,3
Specific models include: MLH32LL/A, MLH42LL/A, MLH52LL/A, MLW92LL/A, MPTU2LL/A, MPTV2LL/A, MPTR2LL/A, MPTT2LL/A, MPTW2LL/A, MPTX2LL/A, MLW72LL/A, MLW82LL/A


Maintenance Tips

To prolong the life of your MacBook Pro battery, follow these helpful maintenance tips:

Avoid deep discharges and recharge when the battery reaches about 20%.
Store and use the device in a cool, temperature-controlled environment to prevent overheating.
Keep your macOS updated to optimize power management and battery life.
Utilize the battery health management feature to help extend the overall lifespan of the battery.

Buy from Dear IT Solution

When purchasing your Apple MacBook Pro 15" A1707 A1820 EMC 3072 EMC 3162 battery from Dear IT Solution, you can trust in the best quality product insured in Bangladesh. Whether you visit our store or order online, you’re guaranteed the best price in BD, along with exceptional customer service.

Review

Write a review

Note: HTML is not translated!
Bad Good
Critial Path: Hello world!
Hello world!
/** * @license * Copyright 2017 Google LLC * SPDX-License-Identifier: Apache-2.0 *//** * @fileoverview Diagnostic audit that lists all JavaScript libraries detected on the page */import {Audit} from '../audit.js'; import * as i18n from '../../lib/i18n/i18n.js';const UIStrings = { /** Title of a Lighthouse audit that provides detail on the Javascript libraries that are used on the page. */ title: 'Detected JavaScript libraries', /** Description of a Lighthouse audit that tells the user what this audit is detecting. This is displayed after a user expands the section to see more. No character length limits. */ description: 'All front-end JavaScript libraries detected on the page. [Learn more about this JavaScript library detection diagnostic audit](https://developer.chrome.com/docs/lighthouse/best-practices/js-libraries/).', /** Label for a column in a data table; entries will be the version numbers of the detected Javascript libraries. */ columnVersion: 'Version', };const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);class JsLibrariesAudit extends Audit { /** * @return {LH.Audit.Meta} */ static get meta() { return { id: 'js-libraries', title: str_(UIStrings.title), scoreDisplayMode: Audit.SCORING_MODES.INFORMATIVE, description: str_(UIStrings.description), requiredArtifacts: ['Stacks'], }; }/** * @param {LH.Artifacts} artifacts * @return {LH.Audit.Product} */ static audit(artifacts) { const libDetails = artifacts.Stacks .filter(stack => stack.detector === 'js') // Don't show the fast paths in the table. .filter(stack => !stack.id.endsWith('-fast')) .map(stack => ({ name: stack.name, version: stack.version, npm: stack.npm, }));/** @type {LH.Audit.Details.Table['headings']} */ const headings = [ {key: 'name', valueType: 'text', label: str_(i18n.UIStrings.columnName)}, {key: 'version', valueType: 'text', label: str_(UIStrings.columnVersion)}, ]; const details = Audit.makeTableDetails(headings, libDetails);const debugData = { type: /** @type {const} */ ('debugdata'), stacks: artifacts.Stacks.map(stack => { return { id: stack.id, version: stack.version, }; }), };if (!libDetails.length) { return {score: null, notApplicable: true}; }return { score: 1, // Always pass for now. details: { ...details, debugData, }, }; } }export default JsLibrariesAudit; export {UIStrings};