Menu
Your Cart

ASUS B31N1632/X405UA LAPTOP BATTERY ORIGINAL

ASUS B31N1632/X405UA LAPTOP BATTERY ORIGINAL
ASUS B31N1632/X405UA LAPTOP BATTERY ORIGINAL
  • Price: TK 4,220/-
  • Stock: In Stock
  • Model: B31N1632/X405UA
TK 4,220/-
Ex Tax: TK 4,220/-

Key Features

    • Model: ASUS B31N1632/X405UA
    • Battery Battery Type: Li-Ion
    • Voltage: 11.52V
    • Capacity: 3653 mAh
    • Color: Black
    • Compatibility: Asus Vivobook 14 X405UR X405UA X405UQ-1B
Specification
General Feature
BrandAsus
ModelB31N1632/X405UA
Power
Battery TypeLi-Ion
Battery CapacityCapacity: 3653 mAh
Physical Attributes
ColorBlack
Compatible WithAsus B31N1632 3ICP5/57/81 battery for Asus Vivobook 14 Asus ZenBook X405 X405U X405UA X405UQ X405UR X405UR-3B
Warranty Information
Warranty6 Month
Description

Long-Lasting Power for Daily Computing: ASUS B31N1632 LAPTOP BATTERY ORIGINAL

The ASUS B31N1632 LAPTOP BATTERY ORIGINAL is specifically engineered to bring your ASUS laptop back to life with stable and efficient power. Built with high-quality lithium-polymer cells, this battery ensures a longer backup time, enhanced charging cycles, and secure protection for your device. With a standard voltage of 11.4V and a capacity of around 48Wh, it’s the perfect replacement for maintaining your laptop’s performance and portability.

This original ASUS battery is ideal for users who depend on their laptops for work, study, or entertainment. Its compact and lightweight design fits seamlessly into compatible ASUS models, offering a reliable power source with advanced safety features including overcharge, short-circuit, and thermal protection. If your laptop's battery life is getting shorter, the ASUS B31N1632 is the trusted solution to regain productivity and battery endurance.


Your Trusted Source – Buy ASUS B31N1632 Battery from Dear IT Solution

At Dear IT Solution, we understand the importance of genuine parts and long-term value. That’s why we offer the ASUS B31N1632 Original Battery at the best price in Bangladesh, with full warranty and quality assurance. Each unit is tested to meet ASUS performance standards and is delivered safely to ensure you get a reliable battery you can count on.

Order now from Dear IT Solution for fast delivery anywhere in BD. Whether you're upgrading your current battery or replacing a damaged one, our team is here to help you find the right fit. Visit us in-store or shop online with full confidence in product quality and after-sales service.

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