Menu
Your Cart

Dell Latitude 5480 / E5580 / (GJKNX) Laptop Battery

Dell Latitude 5480 / E5580 / (GJKNX) Laptop Battery
Dell Latitude 5480 / E5580 / (GJKNX) Laptop Battery
  • Price: TK 3,800/-
  • Stock: In Stock
  • Model: Latitude 5480 / E5580 / Precision 15 3520
TK 3,800/-
Ex Tax: TK 3,800/-

Key Features

    • Brand: Dell
    • Model:Latitude 5480 / E5580 / Precision 15 3520
    • Battery Type: Li-ion
    • Voltage : 7.6V
    • Capacity : 68Wh
    • Number of Cells : 4 cells
    Specification
    General Feature
    BrandDell
    Model Latitude 5480 / E5580 / Precision 15 3520
    Part NoGJKNX 0GJKNX WFWKK VG93N NY5PG
    Power
    Battery TypeLi-ion
    Battery Capacity68WH
    Battery Cells04 Cell
    Physical Attributes
    ColorBlack
    Compatible WithPrecision 15 3520 Precision 3530 Precision M3520 Precision 3520
    Warranty Information
    Warranty06 Month
    Description

    Dell Latitude 5480 / E5580 / Precision 15 3520 (GJKNX) Laptop Battery
    The Dell Latitude 5480 / E5580 / Precision 15 3520 Laptop Battery is a premium replacement battery designed to provide reliable and long-lasting power for your Dell laptop. Engineered to meet the original manufacturer's specifications, this battery ensures smooth and efficient performance for various tasks.

    Key Features
    Compatibility:
    Compatible with Dell Latitude 5480, E5580, and Precision 15 3520 laptop models.

    Battery Type:
    High-quality Lithium-ion cells for consistent and stable energy output.

    Capacity:
    Delivers extended usage time, reducing the frequency of recharges.

    Voltage:
    Designed to match original specifications for seamless integration.

    Safety Standards:
    Built-in protection against overcharging, overheating, and short-circuiting.

    Product Benefits
    Perfect Fit:
    Precisely tailored for listed Dell models, ensuring easy installation and secure connectivity.

    Enhanced Power:
    Supports demanding applications and multitasking with reliable energy supply.

    Durable Build:
    Constructed with robust materials to withstand daily wear and tear.

    Safety Assurance:
    Provides peace of mind with advanced safety features to protect your laptop.

    Why Choose This Battery?
    The Dell Latitude 5480 / E5580 / Precision 15 3520 (GJKNX) Laptop Battery is ideal for users seeking a dependable replacement that restores mobility and productivity. Whether for work, study, or leisure, this battery ensures consistent and efficient performance.

    Available at Dear IT Solution
    Buy the Dell Latitude 5480 / E5580 / Precision 15 3520 (GJKNX) Laptop Battery at the best price in Bangladesh from Dear IT Solution. Experience the best-quality product insured in Bangladesh with outstanding customer service to meet your needs.



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