Menu
Your Cart

Laptop Battery for Acer Aspire ES1-511, ES1-512 - (AC14B18J)

Laptop Battery for Acer Aspire ES1-511, ES1-512 - (AC14B18J)
-11 %
Laptop Battery for Acer Aspire ES1-511, ES1-512 - (AC14B18J)
  • Price: TK 4,500/-
  • special price: TK 4,000/-
  • Stock: In Stock
  • Model: AC14B18J
  • MPN: 31CP5/57/80
TK 4,000/-
TK 4,500/-
Ex Tax: TK 4,000/-

Key Features

    • Battery For Acer Aspire ES1-511, ES1-512-(AC14B18J)
    • Battery Type - Lithium-Ion
    • Maximum Capacity - 3220 mAh
    • Cells - 3 Cells
    • Voltage - 11.40V
Specification
General Feature
BrandACER
ModelAC14B18J
Part NoAC14B18J(31CP5/57/80)
Power
Battery TypeLithium-Ion
Battery Capacity3220 mAh
Battery Cells3 Cells
Physical Attributes
ColorBLACK
Compatible With Acer Aspire V3-111, V3-111P, V5-122, V5-122P, V5-132, V5-132P, V3-111, V3-111P, V5-122, V5-122P, V5-132, V5-132P
Warranty Information
Warranty6 MONTHS
Description

Laptop Battery for Acer Aspire ES1-511, ES1-512 - AC14B18J

This high-quality battery is a perfect replacement for the Acer Aspire ES1-511, ES1-512, and compatible with several other models including E3-111, E3-112, E3-112M, E5-771, E5-771G, R3-131T, R5-431T, R5-471T, R7-371T, R7-372T. With its AC14B18J and AC14B13J part numbers, this battery delivers consistent and reliable power for all your laptop needs. The battery is designed to offer a long-lasting, high-performance solution, ensuring that your Acer laptop continues to perform efficiently.

Product Specifications:

    Nominal Capacity: 3220mAh
    Nominal Voltage: 11.4V
    Battery Type: Li-polymer
    This battery is built to meet the highest standards, ensuring you can continue using your laptop without frequent interruptions. The battery is lightweight and designed to fit seamlessly into your Acer Aspire laptop, providing an effortless installation process. Whether you need it for work, school, or personal use, this battery will deliver the performance you need.

Maintenance Tips:

To ensure the longevity and performance of your Acer Aspire laptop battery, it’s important to follow a few maintenance tips. Avoid overcharging the battery, and disconnect it once fully charged. Make sure to allow the battery to fully discharge and then recharge at least once a month to maintain optimal battery health. Store your laptop and battery in a cool, dry environment when not in use for extended periods. Additionally, avoid exposing the battery to extreme temperatures, as this can affect its performance and lifespan.

Why Buy From Dear IT Solution:

At Dear IT Solution, we offer high-quality replacement batteries for various Acer laptop models at the best price in Bangladesh. Our products are reliable and backed by excellent customer support, ensuring you get the best performance out of your laptop. Choose this AC14B18J battery for a dependable power source and seamless experience with your Acer Aspire. Don’t compromise on quality—order from Dear IT Solution today!

Order Now from Dear IT Solution and enjoy a smooth, high-performance battery upgrade for your Acer Aspire laptop.

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