Menu
Your Cart

ACER 14-Z1402 ORIGINAL BATTERY

ACER 14-Z1402 ORIGINAL BATTERY
-14 %
ACER 14-Z1402 ORIGINAL BATTERY
  • Price: TK 4,200/-
  • special price: TK 3,600/-
  • Stock: In Stock
  • Model: 14-Z1402
TK 3,600/-
TK 4,200/-
Ex Tax: TK 3,600/-

Key Features

    • Brand- ACER
    • Battery Type: Li-Ion
    • Capacity: 2200MAH
    • Voltage: 10.8v
    • Warranty: 06 Month
    Specification
    General Feature
    BrandAcer
    Model14-Z1402
    Power
    Battery TypeLi-Ion
    Battery Capacity2200MAH
    Physical Attributes
    ColorRed
    Compatible Withcer Aspire One 14 Z1402 Battery Acer Z1401 Z1402 Z1402-31ZJ Battery Acer Z1-401-C9JN Battery
    Warranty Information
    Warranty06 Month
    Description

    ACER 14-Z1402 ORIGINAL BATTERY

    The ACER 14-Z1402 Original Battery is a high-quality replacement battery designed specifically for the Acer 14-Z1402 laptop model. It ensures a reliable power supply, allowing you to work, study, or enjoy entertainment without interruptions. Whether you need to replace an aging battery or keep a spare for extended usage, this battery guarantees optimal performance and long-lasting power.

    Engineered with advanced lithium-ion technology, the ACER 14-Z1402 battery delivers efficient power output, providing a stable and consistent energy supply to your device. It ensures longer battery life and supports multiple charge cycles, making it an ideal choice for professionals, students, and everyday users.

    The lightweight and compact design makes it easy to install and carry, providing portability and convenience. This battery is built with high-quality materials, ensuring durability and safety with overcharge, overheat, and short-circuit protection. It undergoes rigorous testing to ensure reliability, allowing users to experience uninterrupted laptop usage.

    Designed to meet OEM specifications, this original battery guarantees 100% compatibility with the Acer 14-Z1402 model, ensuring seamless integration with your laptop. It provides extended usage time on a single charge, reducing the need for frequent recharges and improving overall efficiency.

    With this original Acer battery, you can enhance the performance of your laptop while ensuring safe and stable power management. It is the perfect solution for users seeking a high-quality replacement battery that meets manufacturer standards for reliability and efficiency.


    Buying Suggestions from Dear IT Solution

    Purchase the ACER 14-Z1402 Original Battery from Dear IT Solution at the best price in Bangladesh. As a best quality product insured in Bangladesh, this battery ensures long-lasting performance, durability, and safety. Order now to keep your Acer laptop powered and running efficiently!

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