Menu
Your Cart

ACER AP16M5J ORIGINAL LAPTOP BATTERY

 ACER AP16M5J ORIGINAL LAPTOP BATTERY
-4 %
ACER AP16M5J ORIGINAL LAPTOP BATTERY
  • Price: TK 4,000/-
  • special price: TK 3,850/-
  • Stock: In Stock
  • Model: AP16M5J
TK 3,850/-
TK 4,000/-
Ex Tax: TK 3,850/-

Key Features

    • Model: ACER AP16M5J
    • Battery Type: Li-Ion
    • Voltage: 15.2V
    • Capacity: 53Wh
    • Color: Black
    • Safety Protection: Overcharge, Short Circuit, Overheat Protection
Specification
General Feature
BrandAcer
ModelAP16M5J
Power
Battery TypeLi-ion
Battery Capacity53Wh
Physical Attributes
ColorBlack
Compatible WithA114-31-C4HH A114-31-C0GD A114-31-C1HU A114-31-C76W A114-31-C3B7 A114-31-C3E6 A114-31-C44C A114-31-C4TY A114-31-C4ZV
Warranty Information
Warranty6 Month
Description

Trusted Performance Power Source: LAPTOP BATTERY ORIGINAL ACER AP16M5J

The LAPTOP BATTERY ORIGINAL ACER AP16M5J is a high-quality replacement battery crafted to deliver long-lasting, reliable performance for compatible Acer laptops. Designed with lithium-polymer cell technology, this original Acer battery ensures lightweight durability, fast charging, and efficient power delivery. With a voltage of 15.2V and capacity of 3320mAh, it offers excellent runtime and consistent energy output, keeping your device powered throughout the day.

This battery is the perfect solution for users who require stable performance for office work, study, or multimedia usage. Whether you’re replacing an old battery or upgrading for better efficiency, the AP16M5J is engineered for smooth compatibility and user safety. Built-in protection against overcharging, overheating, and short-circuiting ensures your laptop stays protected while you stay productive.




Buy with Confidence from Dear IT Solution – Original, Reliable, Affordable

When purchasing laptop parts like the ACER AP16M5J Battery, trust Dear IT Solution to deliver quality and value every time. We provide only original, brand-certified laptop batteries that meet all safety and quality standards. At Dear IT, you’ll always get the right battery at the best price in Bangladesh, backed by our warranty and customer support.

Whether you're buying online via Dear IT Solution or visiting our physical store, we ensure prompt delivery, authentic parts, and reliable after-sales service. Don’t compromise on power or safety—choose an original battery from a name you can trust.

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