Menu
Your Cart

Battery For Lenovo ThinkPad X220, X230 Series (5N1026, 45N1175)

Battery For Lenovo ThinkPad X220, X230 Series (5N1026, 45N1175)
Battery For Lenovo ThinkPad X220, X230 Series (5N1026, 45N1175)
  • Price: TK 2,400/-
  • Stock: In Stock
  • Model: X220, X230 Series
  • MPN: 5N1026, 45N1175
TK 2,400/-
Ex Tax: TK 2,400/-

Key Features

    • Brand: For Lenovo
    • Model:Lenovo ThinkPad X220 X220S X220i X230 X230i Series
    • Battery Type: Lithium-Ion
    • Voltage: 11.1V
    • Battery Capacity:5200mAh
    • warranty:6 Months
Specification
General Feature
BrandLenovo
ModelLenovo ThinkPad X220, X230 Series
Part No5N1026 ,45N1175
Power
Battery TypeLithium-Ion
Battery Capacity5200mAh
Battery Cells6 Cells Depend on Stock
Physical Attributes
ColorBlack
Compatible WithLenovo ThinkPad X220, X220S,X220i ,X230 ,X230i Series
Warranty Information
Warranty6 Month
Description

High-Quality Lenovo X220,X230 Series Battery | Best in BD

Looking for a reliable battery replacement for your Lenovo ThinkPad? The Battery for Lenovo ThinkPad X220, X220S, X220i, X230, X230i Series is the ideal choice. With a capacity of 5200mAh and voltage of 11.1V, this 6-cell lithium-ion battery ensures long-lasting performance, keeping your laptop running efficiently throughout the day.

Features & Compatibility

This battery is compatible with the following Lenovo ThinkPad models:

ThinkPad X220 Series: X220, X220S, X220i
ThinkPad X230 Series: X230, X230i
Compatible part numbers include 5N1026, 45N1175, 44++.

Maintenance Tips

To get the best out of your Lenovo ThinkPad battery, follow these maintenance tips:

Avoid deep discharges; recharge the battery when it drops below 20%.
Store the laptop in a cool, dry environment to prevent overheating.
Use only certified Lenovo chargers to extend battery life.
Calibrate the battery monthly by allowing it to fully discharge and then recharge.


Buy from Dear IT Solution

For the best quality product insured in Bangladesh, purchase your Lenovo ThinkPad X220/X230 Series battery from Dear IT Solution. Get the best price in BD for this brand-new, high-quality battery that guarantees reliable performance for your device.


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