Skip to content

KandZ - Tuts

  • Home
  • LinuxExpand
    • Fedora
    • Gnome How-To
    • KDE
    • Linux CLI
    • Linux CLI How-To
    • Ubuntu
  • DevelopmentExpand
    • CSS
    • CSS How-To
    • HTML
    • HTML How-To
    • JavaScript
    • JavaScript How-To
    • Git
  • Tools
  • WindowsExpand
    • Windows 11
KandZ - Tuts
Linux
  • Fedora
  • Gnome 48
  • Gnome How-To
  • KDE
  • Linux CLI
  • Linux CLI How-To
  • Linux How-To
  • Other Distros
  • Ubuntu
  • Various
Development
  • CSS
  • CSS How-To
  • Git
  • HTML
  • HTML How-To
  • JavaScript
  • JavaScript How-To
Windows
  • Windows 11
Benchmarks
Other
Tools
  • JavaScript 47 🧬 Sets and WeakSets
    Development | JavaScript

    JavaScript 47 🧬 Sets and WeakSets

    ByKandZ September 16, 2026September 16, 2026

    A Set is a collection of unique values. Unlike arrays, it never allows duplicates and provides fast lookup with .has(). A WeakSet is a special variant that only holds objects and lets them be garbage-collected when no other references remain. Key point: Use Set when you need uniqueness or fast membership checks on primitives. Use…

    Read More JavaScript 47 🧬 Sets and WeakSetsContinue

  • JavaScript 46 🧬 Object methods in depth
    Development | JavaScript

    JavaScript 46 🧬 Object methods in depth

    ByKandZ September 16, 2026September 16, 2026

    The Object global is a toolbox — it’s the constructor for objects, but it also holds static methods that work on any object. These methods are how you enumerate, copy, freeze, compare, and inspect objects. They’re the foundation of modern JavaScript patterns like immutability and destructuring. Key point: Most Object.* methods work on own enumerable…

    Read More JavaScript 46 🧬 Object methods in depthContinue

  • JavaScript 45 🧬 Array methods in depth
    Development | JavaScript

    JavaScript 45 🧬 Array methods in depth

    ByKandZ September 16, 2026September 16, 2026

    Arrays come with dozens of built-in methods — the day-to-day tools that make JavaScript expressive. Some mutate the array in place; others return a new array or a value. Knowing which is which, and when to use what, is the difference between clean code and buggy code. Key point: Every array method falls into one…

    Read More JavaScript 45 🧬 Array methods in depthContinue

  • JavaScript 44 🧬 ES Modules — import/export
    Development | JavaScript

    JavaScript 44 🧬 ES Modules — import/export

    ByKandZ September 16, 2026September 16, 2026

    ES Modules (ESM) are the official, standardized way to split JavaScript code into reusable files. They use import and export to share code between files, and they’ve replaced the older CommonJS (require/module.exports) approach in modern JavaScript. Key point: ES Modules are static — imports are resolved at load time, not runtime (except for dynamic import())….

    Read More JavaScript 44 🧬 ES Modules — import/exportContinue

  • JavaScript 43 🧬 async/await
    Development | JavaScript

    JavaScript 43 🧬 async/await

    ByKandZ September 16, 2026September 16, 2026

    async and await are the syntax sugar on top of Promises that makes asynchronous code read like synchronous code. Instead of chaining .then() calls, you write await in front of a Promise — and the function pauses until the Promise settles, without blocking the rest of the program. Key point: async marks a function as…

    Read More JavaScript 43 🧬 async/awaitContinue

  • JavaScript 42 🧬 Promises
    Development | JavaScript

    JavaScript 42 🧬 Promises

    ByKandZ September 16, 2026September 16, 2026

    A Promise is JavaScript’s way of representing a value that isn’t available yet but will be — or won’t be — at some point in the future. It’s the foundation of modern asynchronous code, and it solves the “callback hell” problem that plagued JavaScript before ES6. Key point: A Promise is an object with three…

    Read More JavaScript 42 🧬 PromisesContinue

  • JavaScript 41 🧬 Spread operator
    Development | JavaScript

    JavaScript 41 🧬 Spread operator

    ByKandZ September 16, 2026September 16, 2026

    The spread operator (…) takes an iterable — an array, a string, a Set, a Map — or an object, and expands its contents into individual elements. It’s the opposite of the rest parameter, which collects values into an array. Same syntax, different purpose. Key point: Spread expands; rest collects. Both use …, and the…

    Read More JavaScript 41 🧬 Spread operatorContinue

  • JavaScript 40 🧬 The this keyword — call/apply/bind
    Development | JavaScript

    JavaScript 40 🧬 The this keyword — call/apply/bind

    ByKandZ September 16, 2026September 16, 2026

    The this keyword is one of the most confusing parts of JavaScript — until you understand one simple rule: this is determined by how a function is called, not where it’s defined. Once you internalize that rule, everything else falls into place. Key point: this refers to the execution context of a function — the…

    Read More JavaScript 40 🧬 The this keyword — call/apply/bindContinue

  • JavaScript 39 🧬 Error handling — try/catch/finally/throw
    Development | JavaScript

    JavaScript 39 🧬 Error handling — try/catch/finally/throw

    ByKandZ September 16, 2026September 16, 2026

    Errors are a normal part of every program — files go missing, networks drop, users type nonsense, and code has bugs. JavaScript gives you a structured way to throw, catch, and handle errors so a single failure doesn’t crash the whole app. The try / catch / finally block is the foundation of that system….

    Read More JavaScript 39 🧬 Error handling — try/catch/finally/throwContinue

  • Development | JavaScript

    JavaScript 38 🧬 instanceof operator

    ByKandZ September 16, 2026September 16, 2026

    The instanceof operator checks whether an object was created by a specific constructor — or more precisely, whether that constructor’s prototype appears anywhere in the object’s prototype chain. It’s the standard way to ask “is this a Date?”, “is this an Array?”, “is this a Dog?”. Key point: instanceof walks the prototype chain. If the…

    Read More JavaScript 38 🧬 instanceof operatorContinue

Page navigation

1 2 3 … 74 Next PageNext

© 2026 KandZ - Tuts - WordPress Theme by Kadence WP

Ads Blocker Image Powered by Code Help Pro

Ads Blocker Detected!!!

We have detected that you are using extensions to block ads. Please support us by disabling these ads blocker.

Refresh
Powered By
Best Wordpress Adblock Detecting Plugin | CHP Adblock
  • Home
  • Linux
    • Fedora
    • Gnome How-To
    • KDE
    • Linux CLI
    • Linux CLI How-To
    • Ubuntu
  • Development
    • CSS
    • CSS How-To
    • HTML
    • HTML How-To
    • JavaScript
    • JavaScript How-To
    • Git
  • Tools
  • Windows
    • Windows 11