Menu
Your Cart

Apple A1932 A2179 A1965 Battery for MacBook Air 13" Retina

Apple A1932 A2179 A1965 Battery for MacBook Air 13" Retina
-3 %
Apple A1932 A2179 A1965 Battery for MacBook Air 13" Retina
  • Price: TK 6,200/-
  • special price: TK 6,000/-
  • Stock: In Stock
  • Model: A1932, A2179, A1965
  • MPN: EMC 3184
TK 6,000/-
TK 6,200/-
Ex Tax: TK 6,000/-

Key Features

    • Compatibility: MacBook Air A1932, A2179, and A1965
    • Battery Type: Lithium-Polymer
    • Voltage: 7.6V
    • Capacity: 49.9Wh
    • Cell Count: 6-Cell
    • Safety Features: Overcharge and over-discharge protection
    Specification
    General Feature
    BrandApple
    ModelA1932, A2179, A1965
    Part NoEMC 3184 3302 MRE82 MRE92 MVFH2 MWTJ2 MVH22 MVFM2 MVFK2 MREE2 MREC2 MREA2 MREF2 MUQT2 MUQU2
    Power
    Battery TypeLithium-Polymer
    Battery Capacity49.9Wh
    Battery Cells 6Cell
    Physical Attributes
    ColorBlack
    Compatible WithA1932, A2179, A1965
    Warranty Information
    Warranty06 Month
    Description

    A1932 A2179 A1965 Battery for MacBook Air 13" Retina 

    This A1932 A2179 A1965 Battery is a high-quality replacement battery specifically designed for the Apple Battery Air 13" Retina models, offering long-lasting power and reliability. With this replacement battery, you can restore the original battery life of your MacBook Air, ensuring seamless productivity and convenience. Engineered for compatibility with MacBook Air 13" Retina models (A1932, A2179), it delivers optimal performance and safety.

    Key Features
    Compatibility: MacBook Air 13" Retina models A1932, A2179, and A1965
    Battery Type: Lithium-Polymer for lightweight, efficient power
    Voltage: 7.6V
    Capacity: 49.9Wh, providing long battery life
    Cell Count: 6-Cell, engineered for sustained usage
    Safety Features: Overcharge and over-discharge protection, temperature control
    Product Benefits
    Reliable Performance: This replacement battery offers consistent power, allowing you to work or enjoy media without frequent recharging.
    Enhanced Durability: Designed to match or exceed the original battery’s lifespan and safety standards.
    Ideal for On-the-Go Users: The lightweight design makes it easy to carry, perfect for MacBook users who need dependable battery life for travel or work.
    Easy Installation: With a design made to fit seamlessly into MacBook Air models, installation is straightforward, ensuring minimal downtime.
    Why Choose the A1932 A2179 A1965 Battery?
    For those experiencing diminished battery life on their MacBook Air 13" Retina, this replacement battery offers a great way to extend the laptop's usability. This model's reliable, high-performance battery will restore your MacBook’s original runtime, so you can stay productive throughout the day.

    Buying Suggestion at Dear IT Solution
    For the A1932 A2179 A1965 Battery for MacBook Air 13" Retina, Dear IT Solution in Bangladesh offers high-quality options at the best price, backed by assured quality and product support.



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