Menu
Your Cart

ASUS B31N1842 LAPTOP BATTERY ORIGINAL

ASUS B31N1842 LAPTOP BATTERY ORIGINAL
ASUS B31N1842 LAPTOP BATTERY ORIGINAL
  • Price: TK 4,120/-
  • Stock: In Stock
  • Model: B31N1842
TK 4,120/-
Ex Tax: TK 4,120/-

Key Features

    • Model No : B31N1842
    • Type: Li-ion
    • Voltage: 11.4V
    • Capacity: 42Wh
    • Color: Black
    • warranty: 6 Month
Specification
General Feature
BrandAsus
ModelB31N1842
Power
Battery TypeLi-Ion
Battery Capacity42Wh
Physical Attributes
ColorBlack
Compatible WithAsus VivoBook 15 M513IA M513UA F513EA F513EP K513EA K513EQ S513EA S513EP S513EQ X513EA X513EQ X513EP X513IA,Asus K531 X531 V531 S5500F S5500FL V5050E V5050EA V5050EA1135 Series Notebook,VivoBook S15 S531FA S531FL Series.
Warranty Information
Warranty6 Month
Description

Dependable Power Solution: ASUS B31N1842 LAPTOP BATTERY ORIGINAL

The ASUS B31N1842 LAPTOP BATTERY ORIGINAL is engineered to deliver long-lasting performance and stable power output for your ASUS laptop. Featuring high-quality lithium-polymer cells, this battery ensures consistent energy efficiency, extended usage time, and enhanced durability. With a standard voltage of 11.4V and a capacity of approximately 42Wh, it is designed to restore your laptop’s mobility and productivity without compromise.

Whether you're working, studying, or streaming, the ASUS B31N1842 battery offers the reliability you need. It fits perfectly into compatible ASUS models and includes advanced safety mechanisms such as protection from overcharging, overheating, and short circuits. Lightweight and compact, this original battery helps you stay powered on the go with confidence and peace of mind.




Buy Original ASUS Batteries from Dear IT Solution – Best Price in BD

At Dear IT Solution, we provide only original and high-quality laptop batteries like the ASUS B31N1842 to ensure long-term performance and customer satisfaction. Every unit is tested and verified for compatibility, so you can install it with ease and enjoy uninterrupted laptop usage.

Shop now from Dear IT Solution for fast delivery across Bangladesh. Whether you purchase online or from our physical store, you get warranty-backed service, affordable pricing, and reliable customer support. Don’t settle for low-quality copies—choose trusted original parts from Dear IT Solution.

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