Menu
Your Cart

Lenovo IdeaPad 330-14ISK (with Backlight)

Lenovo IdeaPad 330-14ISK (with Backlight)
-13 %
Lenovo IdeaPad 330-14ISK (with Backlight)
  • Price: TK 2,700/-
  • special price: TK 2,350/-
  • Stock: In Stock
  • Model: IdeaPad 330-14ISK
TK 2,350/-
TK 2,700/-
Ex Tax: TK 2,350/-

Key Features

    • Keyboard For: Lenovo Laptop
    • Model: IDEAPAD 330-14ISK
    • Condition: Brand New
    • Compatible For:320-14ISK,320-14AST,320-14IAP,320-14IKB,330-14ISK,330-14,520-14ISK
    • Layout: US
    • Warranty 3 Month
Specification
General Feature
BrandLenovo
Model320-14ISK,320-14AST,320-14IAP,320-14IKB,330-14ISK,330-14,520-14ISK
Physical Attributes
ColorBlack
Backlit OptionYes
LayoutUS
Warranty Information
Warranty3 Month
Description

Laptop Keyboard for Lenovo IdeaPad 330-14ISK (with Backlight) at Dear IT Solution


Upgrade your Lenovo IdeaPad 330-14ISK with a premium backlit keyboard from Dear IT Solution. This replacement keyboard is designed to meet the exact specifications of your laptop, offering a seamless and efficient typing experience that complements the sleek design of your device.

Product Features

Perfect Compatibility

This keyboard is engineered specifically for the Lenovo IdeaPad 330-14ISK model, ensuring flawless compatibility. Whether you're replacing a worn-out keyboard or enhancing your laptop with a backlit version, this keyboard will fit perfectly and function without any issues.

US English Layout

Featuring a standard US English layout, this keyboard provides an intuitive and familiar typing experience. The key arrangement is designed for ease of use, making it ideal for both professional and personal tasks.

Elegant Design with Backlit Functionality

The keyboard boasts a stylish design that matches the aesthetic of your Lenovo IdeaPad 330-14ISK. The added backlit functionality allows for comfortable typing in low-light environments, making it easier to work, study, or play even in the dark. The backlighting ensures each key is visible, reducing eye strain and enhancing productivity.

Warranty and Support

Three-Month Warranty

At Dear IT Solution, we stand behind the quality of our products. This keyboard comes with a three-month warranty, covering any manufacturer defects. This warranty ensures that you receive a reliable and durable product, giving you peace of mind with your purchase.

Conclusion

Enhance your Lenovo IdeaPad 330-14ISK with a top-quality backlit keyboard from Dear IT Solution. Designed for compatibility, comfort, and style, this keyboard offers everything you need for an improved typing experience. Backed by a three-month warranty, it's the perfect upgrade for your device. Visit Dear IT Solution to get your Lenovo IdeaPad 330-14ISK backlit keyboard today and enjoy a better computing experience.


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