Menu
Your Cart

Battery for Lenovo Flex 14, Flex 15, IdeaPad S500

Battery for Lenovo Flex 14, Flex 15, IdeaPad S500
Battery for Lenovo Flex 14, Flex 15, IdeaPad S500
  • Price: TK 2,300/-
  • Stock: In Stock
  • Model: Flex 14, Flex 15, IdeaPad S500
  • MPN: L12L4A01
TK 2,300/-
Ex Tax: TK 2,300/-

Key Features

    • Brand: For Lenovo
    • Model: Lenovo Flex 14, Flex 15, IdeaPad S500
    • Battery Type: Lithium-Ion
    • Voltage: 14.8V
    • Battery Capacity:33Wh 2200mAh
    • warranty:6 Months
Specification
General Feature
BrandLenovo
ModelLenovo Flex 14, Flex 15, IdeaPad S500
Part NoL12L4A01, L12L4K51, L12M4A01, L12M4E51, L12M4K51, L12S4A01, L12S4E51, L12S4F01, L12S4K51.
Power
Battery TypeLithium-Ion
Battery Capacity33Wh 2200mAh
Battery Cells4 Cells Depend on Stock
Physical Attributes
ColorBlack
Compatible WithLenovo IdeaPad Flex 14 14M 15 15M S500 Touch Series
Warranty Information
Warranty6 Month
Description

High-Quality Lenovo Battery for Flex Series | Best in BD

Looking for a reliable battery replacement for your Lenovo laptop? The Battery for Lenovo Flex 14, Flex 15, and IdeaPad S500 is the perfect solution. This lithium-ion battery has a capacity of 2200mAh and a voltage of 14.8V, providing dependable power with its 4-cell design.

Features & Compatibility

This battery is compatible with the following models:

Lenovo IdeaPad Flex Series: Flex 14, Flex 14M, Flex 15, Flex 15M
Lenovo IdeaPad S Series: S500 Touch
Battery Part Numbers: L12L4A01, L12L4K51, L12M4A01, L12M4E51, L12M4K51, L12S4A01, L12S4E51, L12S4F01, L12S4K51

Maintenance Tips

To prolong the life of your Lenovo battery, consider the following maintenance tips:

Charge the battery before it fully discharges; aim to recharge at around 20%.
Keep your laptop in a cool, dry place to avoid overheating.
Only use Lenovo-certified chargers to prevent damage.
Calibrate the battery monthly by allowing it to discharge completely and then fully recharge.

Buy from Dear IT Solution

For the best quality product insured in Bangladesh, purchase your Lenovo battery from Dear IT Solution. We guarantee the best price in BD for this brand-new battery, ensuring your laptop continues to perform 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};