Menu
Your Cart

Transcend JetFlash 790 64GB USB 3.1 Gen 1 Pen Drive

Transcend JetFlash 790 64GB USB 3.1 Gen 1 Pen Drive
Transcend JetFlash 790 64GB USB 3.1 Gen 1 Pen Drive
  • Price: TK 830/-
  • Stock: In Stock
  • Model: JetFlash 790
TK 830/-
Ex Tax: TK 830/-

Key Features

    • Model: JetFlash 790
    • Super Speed USB 3.1 Gen 1 interface
    • Lightweight and compact
    • Lanyard / keyring loop
    Specification
    General Feature
    BrandTranscend
    ModelJetFlash 790
    Capacity64 GB
    Read SpeedSpeed may vary due to host hardware, software, usage, and storage capacity.
    Write SpeedSpeed may vary due to host hardware, software, usage, and storage capacity.
    Technical Info
    ConnectivityUSB 3.1 Gen 1
    Others
    System RequirementMicrosoft Windows 7 Microsoft Windows 8 Microsoft Windows 10 Mac OS 9.0 or later Linux Kernel 2.4.2 or later
    Physical Attributes
    ColorBlack/White
    Dimensions63.6 mm x 21.2 mm x 10.6 mm (2.5" x 0.83" x 0.41")
    Weight4.9 g (0.17 oz)
    Warranty Information
    Warranty05 Years Warranty
    Description

    Transcend JetFlash 790 64GB USB 3.1 Gen 1 Pen Drive

    The Transcend JetFlash 790 64GB USB 3.1 Gen 1 Pen Drive is a compact and high-speed storage device designed to offer a seamless and efficient data transfer experience. With Super Speed USB 3.1 Gen 1 interface, this pen drive ensures fast read and write speeds, making it ideal for transferring large files such as high-resolution photos, videos, and documents quickly.

    This pen drive comes with a 64GB storage capacity, providing ample space for everyday users to store their essential data, whether for work or personal use. The JetFlash 790 features a lightweight and compact design, allowing for easy portability. Whether you’re traveling or commuting, this pen drive fits perfectly in your pocket, making it an ideal companion for those on the go.

    For added convenience, the JetFlash 790 is equipped with a lanyard/keyring loop, making it easy to attach to your keys, bag, or other accessories, ensuring that your data is always within reach.

    Buying Suggestion from Dear IT Solution

    Buy the Transcend JetFlash 790 64GB USB 3.1 Gen 1 Pen Drive at the best price in Bangladesh from Dear IT Solution. We guarantee high-quality products that ensure reliability and long-lasting performance.

    Order today from Dear IT Solution for a smooth, hassle-free shopping experience, secure delivery, and an excellent data storage solution

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