Menu
Your Cart

Dell Latitude 3490 / Inspiron 17 7000 7577 7773 7778 Laptop Battery

Dell Latitude 3490 / Inspiron 17 7000 7577 7773 7778 Laptop Battery
-14 %
Dell Latitude 3490 / Inspiron 17 7000 7577 7773 7778 Laptop Battery
  • Price: TK 3,500/-
  • special price: TK 3,000/-
  • Stock: In Stock
  • Model: Latitude 3490 / Inspiron 17 7000 7577
TK 3,000/-
TK 3,500/-
Ex Tax: TK 3,000/-

Key Features

    • Model: 33YDH
    • Capacity: 56Wh 3500mAh
    • Battery Type: Li-Ion
    • Cells: 4 Cells
    • Voltage: 15.2V
    Specification
    General Feature
    BrandDell
    ModelLatitude 3490 / Inspiron 17 7000 7577
    Part No33YDH 99NF2 PVHT1 81PF3 081PF3 DNCWSCB6106B
    Power
    Battery TypeLI - Ion
    Battery Capacity42w
    Battery Cells03 Cells
    Physical Attributes
    ColorBlack
    Compatible WithDell Inspiron 17 7000 7577 7773 7778 7786 7779 2in1 Series Dell G3 15 3579 Series Dell G3 17 3779 Series Dell G5 15 5587 Series Dell G7 15 7588 Series Dell Latitude 15 3590 3580 Series Dell Latitude 14 3490 Series Dell Vostro 15 7580 7570 Series
    Warranty Information
    Warranty06 Month
    Description

    Dell Latitude 3490 / Inspiron 17 7000 7577 7773 7778 Laptop Battery

    The Dell Latitude 3490 / Inspiron 17 7000 7577 7773 7778 Laptop Battery is a high-performance replacement battery designed to provide reliable power backup for your Dell laptop. It ensures long-lasting battery life, making it perfect for work, study, or entertainment without interruptions.

    Built with premium lithium-ion cells, this battery guarantees optimal efficiency, faster charging, and a longer lifespan. Whether you're replacing an old battery or need a spare, this battery will restore your laptop's performance and mobility.

    Buying Suggestions from Dear IT Solution

    At Dear IT Solution, we offer the Dell Latitude 3490 / Inspiron 17 7000 7577 7773 7778 Laptop Battery at the best price in Bangladesh, ensuring best quality product insured in Bangladesh.

    As a trusted provider of laptop accessories, we guarantee genuine and high-quality products. Our team is ready to assist with compatibility checks and installation guidance.

    Order your Dell laptop battery from Dear IT Solution today and keep your laptop powered up for seamless performance!





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