Menu
Your Cart

Battery for Apple MacBook Pro A1964/A1989

Battery for Apple MacBook Pro A1964/A1989
Battery for Apple MacBook Pro A1964/A1989
  • Price: TK 6,700/-
  • Stock: In Stock
  • Model: A1964/A1989
TK 6,700/-
Ex Tax: TK 6,700/-

Key Features

    • Brand: For Apple
    • Model: Apple MacBook Pro A1964/A1989
    • Battery Type: Lithium-Ion
    • Voltage: 11.41V
    • Battery Capacity:5086mAh
    • warranty:6 Months
Specification
General Feature
BrandApple
ModelApple MacBook Pro A1964/A1989
Part NoApple Macbook Pro A1964/A1989
Power
Battery TypeLi-Ion
Battery Capacity5086 mAh
Battery Cells4 Cells
Physical Attributes
ColorBlack
Compatible WithMacBook Pro Mid 2018 A1989 BTO/CTO 2.7GHz Core i7 (MacBookPro15,2) MacBook Pro Mid 2019 A1989 MV962LL/A 2.8GHz Core i5 (MacBookPro15,2) MacBook Pro Mid 2019 A1989 BTO/CTO 2.8GHz (MacBookPro15,2) MacBook Pro Mid 2018 A1989 MR9Q2LL/A 2.3GHz Core i5 (MacBookPro15,2)
Warranty Information
Warranty6 Month
Description

Apple MacBook Pro A1964/A1989 Laptop Battery

At Dear IT Solution, we provide top-quality replacement batteries for your Apple MacBook Pro A1964/A1989 models. The battery comes with a high capacity of 5086mAh and is built with Lithium-Ion technology, offering four cells that operate at 11.41V. Designed to deliver reliable performance and long-lasting power, this battery ensures your MacBook Pro runs smoothly for extended periods.

Compatible Laptop Models

This battery is compatible with the following MacBook Pro models:

MacBook Pro Mid 2018 A1989 BTO/CTO 2.7GHz Core i7 (MacBookPro15,2)
MacBook Pro Mid 2019 A1989 MV962LL/A 2.8GHz Core i5 (MacBookPro15,2)
MacBook Pro Mid 2019 A1989 BTO/CTO 2.8GHz (MacBookPro15,2)
MacBook Pro Mid 2018 A1989 MR9Q2LL/A 2.3GHz Core i5 (MacBookPro15,2)

Maintenance Tips

To maximize the lifespan of your MacBook Pro battery, follow these maintenance tips:

Charge the battery when it drops to around 20% to avoid deep discharge.
Store and use the laptop in a moderate temperature environment to prevent overheating.
Keep your macOS updated, as updates may improve battery efficiency.
Activate the battery health management feature to optimize charging patterns and reduce wear over time.

Buy from Dear IT Solution

When you purchase your Apple MacBook Pro A1964/A1989 battery from Dear IT Solution, you are guaranteed the best quality product insured in Bangladesh. Whether you visit our shop or place an order online, you can enjoy the best price in BD with fast and reliable 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};