Menu
Your Cart

Apple macbook Pro A1185 high-quality Battery

Apple macbook Pro A1185 high-quality Battery
Apple macbook Pro A1185 high-quality Battery
  • Price: TK 3,250/-
  • Stock: In Stock
  • Model: A1185
TK 3,250/-
Ex Tax: TK 3,250/-

Key Features

    • Brand: Apple
    • Model:A1185
    • Battery Type: Lithium-Ion
    • Voltage: 10.8V
    • Capacity: 55Wh
    Specification
    General Feature
    BrandApple
    ModelA1185
    Part NoA1181(EMC 2121) A1181(EMC 2300) A1181 A1185 A1181(EMC 2200) A1181 BLACK A1181(EMC 2139) A1181(EMC 2242) A1181(EMC 2092
    Power
    Battery Type Lithium-Ion
    Battery Capacity58Wh
    Battery Cells6 cells
    Physical Attributes
    ColorBlack
    Compatible WithA1181 A1181 A1185, A1181, A1181 , A1181, A1181,
    Warranty Information
    Warranty06 Month
    Description

    Apple A1185 Laptop Battery

    The Apple A1185 Battery is a high-quality replacement battery compatible with various older MacBook models, especially suited for the MacBook 13-inch series. Designed to offer dependable power and performance, this battery is an excellent option to restore the original runtime and functionality of your MacBook.

    Key Features
    Compatibility: Designed for 13-inch MacBook models, specifically compatible with MacBook A1181 (White/Black) models from 2006 to 2009
    Battery Type: Lithium-Ion (Li-Ion) for efficient, long-lasting power
    Voltage: 10.8V for stable energy output
    Capacity: 55Wh, offering extended usage time to support work, entertainment, and daily activities
    Durability and Safety: Equipped with overcharge, over-discharge, and short-circuit protection to ensure reliable performance
    Product Benefits
    Reliable Power Source: The high-capacity 55Wh battery ensures prolonged usage time, reducing the frequency of recharging.
    Easy Installation and Perfect Fit: Precisely designed to fit seamlessly into compatible MacBook models without adding bulk or weight.
    High-Quality Components: Built to meet or exceed original Apple battery standards, ensuring consistent power and durability.
    Enhanced Safety Features: Protects your MacBook against power surges, overheating, and other electrical issues.
    Why Choose the Apple A1185 Battery?
    If you have an older MacBook model that requires frequent recharging or has reduced runtime, the A1185 replacement battery is an ideal solution. It helps bring your MacBook back to optimal power efficiency with reliable performance and Apple-compliant quality.

    Buying Suggestion at Dear IT Solution
    Consider purchasing the Apple A1185 Battery at Dear IT Solution in Bangladesh, where you can count on the best quality product insured in the region. Dear IT Solution provides reliable customer service, ensuring a smooth purchase experience and quality assurance for your MacBook battery replacement needs.



    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};