Menu
Your Cart

Battery For Samsung Laptop R530, R580, RV510, NP300E5C

Battery For Samsung Laptop R530, R580, RV510, NP300E5C
Battery For Samsung Laptop R530, R580, RV510, NP300E5C
Battery For Samsung Laptop R530, R580, RV510, NP300E5C
Battery For Samsung Laptop R530, R580, RV510, NP300E5C
Battery For Samsung Laptop R530, R580, RV510, NP300E5C
Battery For Samsung Laptop R530, R580, RV510, NP300E5C
Battery For Samsung Laptop R530, R580, RV510, NP300E5C
  • Price: TK 1,800/-
  • Stock: In Stock
  • Model: R530, R580, RV510, NP300E5C
  • SKU: AA-PB9NC6B
  • MPN: AA-PB9NC5B
TK 1,800/-
Ex Tax: TK 1,800/-

Key Features

    • Battery For Samsung Laptop
    • Model: R530, R580, RV510, NP300E5C
    • Battery Type: Li-ion
    • Capacity:4400mAh/5200mAh
    • Product Type: Replacement Battery
    • 6 Months Warranty
Specification
General Feature
BrandReplace For Samsung
ModelR530, R580, RV510, NP300E5C
Part NoAA-PB9NC6B AA-PB9NS6B, AA-PB9NC6W,
Power
Battery TypeLi-ion
Battery Capacity4400mAh/5200mAh
Physical Attributes
ColorBlack
Compatible WithR530, R580, RV510, R730, R780, R418, NP-R519 & NP300E5C series
Warranty Information
Warranty6 Months
Description

Samsung RV510, NP300E5C Battery - High-Quality Replacement BD

This high-quality replacement battery is designed for Samsung laptops, offering reliable power and long-lasting performance. The battery is compatible with a wide range of Samsung models, including the R530, R580, RV510, and NP300E5C series. It has a 5200mAh capacity, ensuring extended usage for your device, whether for work, entertainment, or daily computing needs.

The notebook battery is a Li-ion model and fits perfectly with Samsung models such as:

    Samsung AA-PB9NC6B
    AA-PB9NS6B
    AA-PB9NC6W
    AA-PB9MC6W
    AA-PB9MC6B
    NP300E5A
    P410
    R428, R460, R439, R468, R470, R480, R519, R580, R620, R700, R720
    NP300E5C series NP300E5C-A0DUS, NP300E5C-A0CUS, NP300E5C-A09US

With its 5200mAh power, this high-quality battery supports smooth, consistent laptop performance and extends the operational life of your device. The battery is CE, FCC, and RoHS-certified for safety, offering the reliability you need for worry-free usage.

Buy Suggestion

You can find this high-quality replacement battery for Samsung laptops at Dear IT Solution, ensuring the best price in BD. Whether you're replacing a worn-out battery or just looking to have a spare, this option ensures your Samsung laptop stays powered and productive for longer.


Maintenance Tips

    Regularly clean your laptop's battery contacts to prevent debris from interfering with performance.
    Avoid leaving your laptop plugged in at 100% for extended periods. Try to maintain a charge between 20% and 80% for optimal battery longevity.
    Store your laptop in a cool, dry place, as excessive heat can shorten the lifespan of Li-ion batteries.

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