Map, Set, WeakMap & WeakSet in JavaScript - Real use case

Поделиться
HTML-код
  • Опубликовано: 7 окт 2024
  • Here is a simple real time solution on Map, Set, WeakMap and WeakSet in javascript. I am trying to explain with those JavaScript objects with real use case function. If you need more information please leave your comments in the comment section.
    #Set #Map #WeakMap #WeakSet #JavaScript

Комментарии • 8

  • @gokulans5052
    @gokulans5052 4 года назад +4

    Well explained bro...awesome i was searching for this topic for a long but none of the video explained properly...but u r just awesome...continue keep it up

  • @annaivanova7542
    @annaivanova7542 3 года назад +2

    Do you plan to make more videos on Vanilla JS?

    • @jshelper5629
      @jshelper5629  3 года назад +1

      Sure thanks for showing your interest. I will definitely upload videos

  • @hunterliu2288
    @hunterliu2288 5 лет назад +1

    Thanks

  • @arazmammadov9276
    @arazmammadov9276 4 года назад

    Thank you so much

  • @pashabiceps95
    @pashabiceps95 4 года назад

    8:33 - it is not function name, it's the reference

  • @tomasmatusek6292
    @tomasmatusek6292 2 года назад

    The getRandom no working :(
    function getRandom() {
    return Math.round(Math.random(10)*10);
    };

    console.log(getRandom);

    • @Fernando-du5uj
      @Fernando-du5uj 2 года назад

      You have to execute it with double parentheses, like: console.log(getRandom());