Menu
Your Cart

LENOVO 310-15ISK (L15L2PB4) ORIGINAL LAPTOP BATTERY

 LENOVO 310-15ISK (L15L2PB4) ORIGINAL LAPTOP BATTERY
-11 %
LENOVO 310-15ISK (L15L2PB4) ORIGINAL LAPTOP BATTERY
  • Price: TK 4,400/-
  • special price: TK 3,920/-
  • Stock: In Stock
  • Model: L15L2PB4
TK 3,920/-
TK 4,400/-
Ex Tax: TK 3,920/-

Key Features

    • Voltage: 7.6V
    • Capacity: 30Wh
    • Battery Type: Lithium-Ion
    • Battery Cells: 2-cell
    • Compatible Laptop Models: Lenovo IdeaPad 310-15ISK, 510-15ISK, 510-15IKB
    • Compatible Part Numbers: L15L2PB4, L15C2PB4, L15M2PB4, L15M2PB3, L15L2PB5
Specification
General Feature
BrandLenovo
ModelL15L2PB4
Power
Battery TypeLithium-Ion
Battery Capacity30Wh (~4050mAh)
Battery Cells2 Cells
Physical Attributes
ColorBlack
Compatible WithLenovo IdeaPad 310-15ISK, 510-15ISK, 510-15IKB
Warranty Information
Warranty6 Months
Description

Reliable OEM Power: Lenovo L15L2PB4 Battery for IdeaPad 310 & 510 Series

The Lenovo L15L2PB4 is a genuine OEM lithium-ion battery designed to power select Lenovo IdeaPad 310-15ISK, 510-15ISK, and 510-15IKB series laptops. Also known by compatible part numbers L15C2PB4, L15M2PB4, and L15M2PB3, this internal battery delivers a steady 7.6V output with a robust 30Wh capacity (~4050mAh), offering long-lasting power for work, streaming, and browsing.

Manufactured with high-quality Li-ion cells, this battery includes built-in protection against overcharging, overheating, and short-circuiting. It meets OEM safety standards (CE, RoHS, FCC) and is rated for 300–500 charge cycles. Backed by a 6 Months warranty from Dear IT Solution, it is a dependable replacement to restore your Lenovo laptop's mobility and productivity.


Buy from Dear IT Solution – Genuine Quality, Excellent Support & Fast Delivery

At Dear IT Solution, we sell only original and tested Lenovo batteries like the L15L2PB4. Our products come with a 6-month warranty, undergo strict quality checks, and are packed securely for safe transit. Enjoy fast delivery across Bangladesh, responsive after-sales support, and guaranteed authenticity. Choose us to extend your laptop’s battery life with confidence.

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