Menu
Your Cart

Apple MacBook Pro A1713, A1708 Battery

Apple MacBook Pro A1713, A1708 Battery
-4 %
Apple MacBook Pro A1713, A1708 Battery
  • Price: TK 5,500/-
  • special price: TK 5,300/-
  • Stock: In Stock
  • Model: A1713, A1708
TK 5,300/-
TK 5,500/-
Ex Tax: TK 5,300/-

Key Features

    • Brand: Apple
    • Model:A1713,A1708
    • Battery Type: Lithium-Polymer
    • Voltage:11.41V
    • Capacity: 49.2Wh
    Specification
    General Feature
    BrandApple
    Model A1713, A1708
    Part NoA1713 A1708(EMC 3164) A1708 A1708(EMC 2978) 020-00946
    Power
    Battery Type Lithium-Polymer
    Battery Capacity 54.5Wh
    Battery Cells03 cells
    Physical Attributes
    ColorBlack
    Compatible WithA1713 A1708 A1708 A1708
    Warranty Information
    Warranty06 Month
    Description

    Apple A1713, A1708 MacBook Pro Battery Price in Bangladesh

    The Apple A1713 Laptop Battery is a premium replacement battery crafted for the 13-inch MacBook Pro models without the Touch Bar, specifically designed to restore your device’s power and performance. This battery meets Apple's standards for quality and durability, making it an ideal choice for users who demand high performance and reliable power for their MacBook Pro.

    Key Features
    Compatibility: Suitable for MacBook Pro 13" models without Touch Bar, such as the A1708 (Late 2016 and Mid 2017 versions)
    Battery Type: Lithium-Polymer (Li-Poly) for enhanced efficiency and a lighter weight
    Voltage: 11.41V, ensuring stable and efficient power output
    Capacity: 49.2Wh, designed to support prolonged usage for work, entertainment, and daily tasks
    Safety Standards: Equipped with overcharge, over-discharge, overheat, and short-circuit protection for enhanced safety
    Product Benefits
    Extended Power for Productivity: The high-capacity 49.2Wh battery allows extended use, minimizing the need for frequent charging, ideal for travel and on-the-go tasks.
    High-Quality Components: Manufactured with top-tier cells and components to meet or exceed the original battery specifications, ensuring reliable and durable performance.
    Perfect Fit and Lightweight Design: Precisely engineered to match the slim profile of the MacBook Pro, keeping your device lightweight and portable.
    Easy Installation: Designed for an exact fit, allowing hassle-free installation to get your MacBook Pro back to optimal performance in no time.
    Why Choose the Apple A1713 Battery?
    If you’ve noticed shorter battery life or performance issues, the A1713 replacement battery is an excellent solution to rejuvenate your MacBook Pro. With quality that parallels Apple’s standards, this battery provides peace of mind with safe, efficient, and long-lasting power.

    Buying Suggestion at Dear IT Solution
    Purchase the Apple A1713 Laptop Battery at Dear IT Solution in Bangladesh, where you’ll receive the best quality product insured in the region. This battery replacement is backed by Dear IT Solution’s dedicated customer support, making it the ideal choice for enhancing the lifespan and performance of your MacBook Pro.




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