Menu
Your Cart

Lenovo IdeaPad 120S-11IAP 130S-11IGM Laptop Battery

Lenovo IdeaPad 120S-11IAP 130S-11IGM Laptop Battery
Lenovo IdeaPad 120S-11IAP 130S-11IGM Laptop Battery
  • Price: TK 3,550/-
  • Stock: In Stock
  • Model: IdeaPad 120S-11IAP 130S-11IGM
TK 3,550/-
Ex Tax: TK 3,550/-

Key Features

    • Brand:Lenovo
    • Model:IdeaPad 120S-11IAP 130S-11IGM
    • Battery Type:Li-ion
    • Voltage : 7.5V
    • Capacity : 27Wh
    • Number of Cells : 2 cells
    Specification
    General Feature
    BrandLenovo
    ModelIdeaPad 120S-11IAP 130S-11IGM
    Power
    Battery TypeLi-ion
    Battery Capacity27WH
    Battery Cells02 Cell
    Physical Attributes
    ColorBlack
    Compatible WithIdeaPad 120S-11IAP 0813006(2ICP5/54/90) IdeaPad 120S-11IAP(81A40060GE) IdeaPad 130S-11IGM 81KT0000US IdeaPad 120S-11IAP(81A4005UGE) IdeaPad 120S-11IAP(81A40062GE) IdeaPad 120S IdeaPad 130S-11IGM 5B10P23836 IdeaPad 120S-11IAP(81A4005VGE) IdeaPad 120S-11IAP(81A4005XGE) 5B10P23790 IdeaPad 120S-11IAP(81A4005WGE) IdeaPad 130S-11IGM 81KT 5B10P18554
    Warranty Information
    Warranty06 Month
    Description

    Lenovo IdeaPad 120S-11IAP 130S-11IGM Laptop Battery
    Key Features
    Compatibility: Designed for Lenovo IdeaPad 120S-11IAP and 130S-11IGM laptop models.
    Battery Type: Premium lithium-ion cells for optimal performance and durability.
    Capacity: Provides extended runtime for uninterrupted usage.
    Voltage: Matches original specifications for seamless integration.
    Safety Standards: Equipped with protection against overcharging, overheating, and short circuits.
    Product Benefits
    Long-lasting battery life ensures reliable performance throughout the day.
    High-quality lithium-ion cells deliver consistent power and durability.
    Lightweight design maintains the laptop’s portability.
    Advanced safety features for user and device protection.
    Why Choose This Model
    This battery is a perfect replacement for your Lenovo IdeaPad 120S-11IAP or 130S-11IGM laptop. With high-quality materials and reliable performance, it restores your laptop's power and productivity efficiently.

    Why Choose Dear IT Solution
    Best Price in Bangladesh: Competitive pricing for high-quality laptop batteries.
    Guaranteed Quality: Best quality product insured in Bangladesh for reliable performance.
    Expert Support: Friendly and professional customer service to assist with your purchase.

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