Menu
Your Cart

Dell 11 3180 11 3164 (0JV6J) Laptop Battery

Dell 11 3180 11 3164 (0JV6J) Laptop Battery
Dell 11 3180 11 3164 (0JV6J) Laptop Battery
  • Price: TK 3,500/-
  • Stock: In Stock
  • Model: 11 3180 11 3164
TK 3,500/-
Ex Tax: TK 3,500/-

Key Features

    • Brand: Dell
    • Model:11 3180 11 3164
    • Battery Type:Li-ion
    • Voltage : 7.6V
    • Capacity : 32Wh
    • Number of Cells : 4 cells
    Specification
    General Feature
    BrandDell
    Model 11 3180 11 3164
    Part NoOJV6J 8NWF3 P24T003 P25T001 P25T 0JV6J P24T002 00JV6J P25T003 P25T002 P24T P24T001 0PGYK5 PGYK5
    Power
    Battery TypeLi-ion
    Battery Capacity32Wh
    Battery Cells04 Cell
    Physical Attributes
    ColorBlack
    Compatible WithInspiron 11 3180 Inspiron 11 3164 Inspiron 11 3185 2-IN-1 Inspiron 11 3168 Inspiron 11 3162 Inspiron 11 3179
    Warranty Information
    Warranty06 Month
    Description

    Dell 11 3180, 11 3164 (0JV6J) Laptop Battery
    The Dell 11 3180, 11 3164 (0JV6J) Laptop Battery is a high-quality replacement battery designed to restore the performance and portability of your Dell laptop. Built with advanced Lithium-ion technology, this battery ensures reliable power and extended runtime for all your computing needs.

    Key Features
    Compatibility:
    Specifically designed for Dell 11 3180 and 11 3164 series laptops with model number 0JV6J.

    Battery Type:
    Utilizes premium Lithium-ion cells for consistent and efficient power delivery.

    Capacity:
    Engineered for extended battery life, reducing the need for frequent recharges.

    Voltage:
    Matches the original laptop specifications for seamless operation and integration.

    Safety Standards:
    Incorporates advanced safety features to prevent overcharging, overheating, and short-circuiting.

    Product Benefits
    Perfect Fit:
    Precisely designed to fit Dell 11 3180 and 11 3164 laptops, ensuring compatibility and easy installation.

    Reliable Performance:
    Delivers dependable power for extended productivity, work, or entertainment.

    Long-Lasting Durability:
    Manufactured with top-grade materials for enhanced lifespan and consistent performance.

    Safety Assured:
    Integrated safety mechanisms safeguard your device and the battery, providing peace of mind during use.

    Why Choose This Battery?
    Choose this battery for your Dell 11 3180 or 11 3164 laptop to restore its mobility and efficiency. Whether you're working on the go or enjoying leisure activities, this battery offers reliable power and dependable performance for an improved user experience.

    Available at Dear IT Solution
    Get the Dell 11 3180, 11 3164 (0JV6J) Laptop Battery at Dear IT Solution for the best price in Bangladesh. We ensure a best-quality product insured in Bangladesh, along with top-notch customer service to meet all 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};