Menu
Your Cart

Dell Latitude E7270, E7470 (J60J5) Laptop Battery

Dell Latitude E7270, E7470 (J60J5) Laptop Battery
Dell Latitude E7270, E7470 (J60J5) Laptop Battery
  • Price: TK 3,500/-
  • Stock: In Stock
  • Model: Dell Latitude E7270, E7470
TK 3,500/-
Ex Tax: TK 3,500/-

Key Features

    • Brand:Dell
    • Model:Latitude E7270, E7470
    • Voltage : 11.1V
    • Capacity : 37Wh
    • Number of Cells : 3 cells
    Specification
    General Feature
    BrandDell
    ModelDell Latitude E7270, E7470
    Part NoJ60J5 P61G001 0F1KTM 7CJRC P26S001 F1KTM 451-BBSY 0MC34Y P61G 07CJRC 0PDNM2 579TY 21X15 J6OJ5 NJJ2H 1W2Y2 PDNM2 MC34Y V6VMN P26S 0579TY 242WD GG4FM
    Power
    Battery TypeLi-ion
    Battery Capacity37WH
    Battery Cells03 Cell
    Physical Attributes
    ColorBlack
    Compatible WithLatitude 12 E7270 Latitude 12 E7470 Latitude E7270 Latitude E7470
    Warranty Information
    Warranty06 Month
    Description


    Dell Latitude E7270, E7470 (J60J5) Laptop Battery
    The Dell Latitude E7270, E7470 (J60J5) Laptop Battery is a premium replacement designed to provide dependable power and performance for your Dell Latitude laptop. With its high-grade Lithium-ion technology, this battery ensures extended runtime and reliable energy efficiency for professional and personal use.

    Key Features
    Compatibility:
    Tailored for Dell Latitude E7270 and E7470 laptops, with part number J60J5.

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

    Capacity:
    Delivers extended power for uninterrupted work and play.

    Voltage:
    Optimized to match original specifications for smooth and seamless performance.

    Safety Standards:
    Equipped with advanced safety features to protect against overcharging, overheating, and short-circuiting.

    Product Benefits
    Perfect Fit:
    Custom-made for Dell Latitude E7270 and E7470 laptops, ensuring precise compatibility and easy installation.

    Reliable Performance:
    Provides consistent power, supporting multitasking and extended productivity.

    Durability and Longevity:
    Constructed with robust materials to withstand everyday use and deliver lasting performance.

    Enhanced Safety:
    Integrated safety mechanisms ensure secure operation, protecting your laptop and battery.

    Why Choose This Battery?
    This battery is the ideal solution for users looking to enhance the portability and reliability of their Dell Latitude E7270 or E7470 laptops. Its superior design and dependable performance make it a valuable upgrade for both work and leisure activities.

    Available at Dear IT Solution
    Purchase the Dell Latitude E7270, E7470 (J60J5) Laptop Battery at Dear IT Solution for the best price in Bangladesh. We guarantee a best-quality product insured in Bangladesh, coupled with exceptional customer service for your satisfaction.

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