Menu
Your Cart

ASUS B31N1705 LAPTOP BATTERY ORIGINAL

ASUS B31N1705 LAPTOP BATTERY ORIGINAL
ASUS B31N1705 LAPTOP BATTERY ORIGINAL
  • Price: TK 5,020/-
  • Stock: In Stock
  • Model: B31N1705
TK 5,020/-
Ex Tax: TK 5,020/-

Key Features

    • Model: ASUS B31N1705
    • Battery Type: Li-Polymer
    • Voltage: 11.4V
    • Capacity: 42Wh/3653mAh;
    • Color: Black
    • Compatibility: ASUS B31N1705 TP410UA 410 410 Q405UA Q405UA-BI5T5 Q405UA-BI5T7 UX460UA UX460UA
Specification
General Feature
BrandAsus
ModelB31N1705
Power
Battery TypeLi-Polymer
Battery Capacity42Wh/3653mAh
Physical Attributes
ColorBlack
Compatible WithLaptop BATTERY For ASUS B31N1705 TP410UA 410 410 Q405UA Q405UA-BI5T5 Q405UA-BI5T7 UX460UA UX460UA
Warranty Information
Warranty6 Month
Description

Premium Power Backup: ASUS B31N1705 LAPTOP BATTERY ORIGINAL

The ASUS B31N1705 LAPTOP BATTERY ORIGINAL is a high-performance replacement battery designed specifically for compatible ASUS laptops. Built with lithium-polymer cells, this battery delivers consistent power, long-lasting backup, and high energy efficiency. With a voltage of 11.4V and a typical capacity of around 48Wh, it ensures your laptop remains functional and reliable throughout the day.

Perfect for students, professionals, or casual users, this original ASUS battery is lightweight, safe, and engineered to the highest quality standards. It includes built-in protection from overcharging, overheating, and short-circuiting to preserve your laptop’s health and performance. Restore your device's battery life with a reliable power solution trusted by ASUS users worldwide.




Buy from Dear IT Solution – Trusted Source for ASUS Batteries in BD

When purchasing laptop components, Dear IT Solution is your go-to destination in Bangladesh. We offer the ASUS B31N1705 Laptop Battery Original with full warranty, ensuring authenticity, durability, and value for money. Our products are tested for safety and performance, giving you confidence with every charge.

Order online from Dear IT Solution or visit our physical store for expert support. We provide fast delivery, competitive pricing, and genuine products to help you get back to work or study without interruption. Trust us for the best deals on original ASUS batteries in BD.

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