20+ Must Know Array Methods That Almost Nobody Knows

แชร์
ฝัง
  • เผยแพร่เมื่อ 25 ส.ค. 2024

ความคิดเห็น • 155

  • @FunctionGermany
    @FunctionGermany 8 หลายเดือนก่อน +220

    flatMap is NOT like .flat() .map(), it's like .map() .flat(), very different!!

    • @WebDevSimplified
      @WebDevSimplified  8 หลายเดือนก่อน +61

      Good point. I messed up when talking about this.

    • @ehm-wg8pd
      @ehm-wg8pd 8 หลายเดือนก่อน +48

      they should call it matFlap

    • @xiaozhenxiang
      @xiaozhenxiang 8 หลายเดือนก่อน +13

      ​@@ehm-wg8pdflatMap = flat the map

    • @JokeryEU
      @JokeryEU 8 หลายเดือนก่อน +4

      also flatMap only goes 1 lvl deep

    • @VladBurlutsky
      @VladBurlutsky 8 หลายเดือนก่อน +3

      Always read the ECMAScript specs, that's what all hardcore JS programmers use!
      The Array.prototype.flatMap and Array.prototype.flat methods in JavaScript are quite similar in their functionality, but they have some key differences:
      Functionality:
      flatMap: This method first maps each element using a mapping function, then flattens the result into a new array. It's essentially a combination of the map and flat methods.
      flat: This method simply flattens an array up to a specified depth and does not perform any mapping.
      Mapping Function (mapperFunction):
      flatMap: Requires a mapperFunction as its first argument. This function is called on every element of the array, and the results are then flattened.
      flat: Does not take a mapping function. It only flattens the array based on the specified depth.
      Depth Specification:
      flatMap: Implicitly flattens the array only one level deep. It does not accept a depth argument.
      flat: Accepts an optional depth argument that determines the depth level to which the array should be flattened. If depth is not provided, the default is one level deep.
      Error Handling (TypeError):
      flatMap: Throws a TypeError if the provided mapperFunction is not callable.
      flat: There's no such error condition specifically related to the function's argument since it doesn't require a function as an argument.
      Depth Handling in flat:
      flat: Contains additional steps to handle the depth parameter. If depth is undefined, it is treated as 1, and if it is less than 0 after conversion to an integer, it is set to 0.@@WebDevSimplified

  • @davidj6755
    @davidj6755 8 หลายเดือนก่อน +21

    I’m excited about the set theory operators. I hope that eventually gets full support across major browsers.

    • @tropicaljupiter
      @tropicaljupiter 8 หลายเดือนก่อน

      Every day we stray further from lodash’s light

  • @user-je5kv3uh2t
    @user-je5kv3uh2t 8 หลายเดือนก่อน +7

    Group by & differences were totally new to me. Thanks for the video mate

  • @sarveshdhiman15
    @sarveshdhiman15 6 หลายเดือนก่อน +1

    In a single video I learn lot of things with proper explanation and with so ease. Thanks 🙏

  • @quanghungpham269
    @quanghungpham269 8 หลายเดือนก่อน +3

    I used most of these method quite frequently, they are super useful. My fav one is reduce(), it's very useful when you want to reduce the array to a value and then use that value, also I got headache many times from using it :)

  • @magnanova
    @magnanova 8 หลายเดือนก่อน +3

    It's about time they added those Set difference/intersection methods!

  • @harmez7
    @harmez7 8 หลายเดือนก่อน +2

    Kyle, thank you for speaking so clearly.
    Im not that good at English but I can completely understand you, that's why I subbed to here years ago.

    • @rdubb77
      @rdubb77 6 หลายเดือนก่อน

      It’s true, his pacing and diction is very good.

  • @industrydzina
    @industrydzina 8 หลายเดือนก่อน +7

    Important to note that the .fill method behaves differently when you fill the array with objects(including arrays), where it actually fills the array with a REFERENCE to the original object, so that if you perform a mutation on any of the objects in this array, it will perform the same mutation on all the elements in the array. Was stumped by this until ChatGPT helped point me to the docs on MDN...

    • @Ebiko
      @Ebiko 8 หลายเดือนก่อน +1

      That's why fill is regularly used with a lambda to generate unique objects.

  • @shgysk8zer0
    @shgysk8zer0 8 หลายเดือนก่อน +1

    You had me a bit concerned including groupBy() and the Set methods... I was worried the spec had changed yet again.
    Yes, I knew all of them. I've written polyfills for them, which is why I was worried specs had changed.

  • @roebucksruin
    @roebucksruin 8 หลายเดือนก่อน +1

    An important distinction of .fill(), it fills the array with a static value. If you’re filling with an object, it’s the exact same object in memory. I tried to use it with the array constructor to convert an integer into an array of objects with a length of said integer, and every index would change on edit.

  • @ajedamilola8146
    @ajedamilola8146 8 หลายเดือนก่อน

    I wish I had seen this video sooner. This groupBy would have saved me lots of time. I had to do this manually.

  • @GuildOfCalamity
    @GuildOfCalamity 8 หลายเดือนก่อน +1

    Kyle's hair should have its own channel.

  • @DarrenJohn10X
    @DarrenJohn10X 8 หลายเดือนก่อน

    .at() got all the excited press, meanwhile .with() was virtually ignored.
    Thanks Kyle for talking about both together.

  • @ryan.wakefield
    @ryan.wakefield 8 หลายเดือนก่อน +4

    The one thing I felt like was missing from this video is that you usually make sure to provide example situations in when you might use the code, and more importantly why. Otherwise, learned a lot of cool new stuff I will try to find a use for. Thanks!

  • @ukaszzbrozek6470
    @ukaszzbrozek6470 8 หลายเดือนก่อน +2

    I know them all except the set methods. Thanks for a great reminder.
    When using shift and unshift we should remember that is a very non-performant action because the array need to recalculate all indexes. We should avoid using them.
    To be honest knowing about at method didn’t change that I am still using array[array.length - 1] syntax. It is such strong muscle memory that I write that without thinking. XD

    • @ryanlinnane
      @ryanlinnane 8 หลายเดือนก่อน

      The shift methods are good for interviews for quickly representing a deck.

  • @user-tw6tr8rb6n
    @user-tw6tr8rb6n 8 หลายเดือนก่อน +1

    Bro you really helped a lot. Thank you!

  • @rajas_world_20
    @rajas_world_20 หลายเดือนก่อน

    Thanks Kyle the video is very informative

  • @NiceChange
    @NiceChange 7 หลายเดือนก่อน

    Great video. Kyle makes JS fun and interesting...not an easy thing to do. 😊

  • @ahmadfahim6467
    @ahmadfahim6467 8 หลายเดือนก่อน

    Thanks man, especially the flapmap and explaining array mutations

  • @catto88
    @catto88 8 หลายเดือนก่อน

    Wow, didn't knew about .with (this one is very useful!), .groupBy, start/end arguments of .fill, also didn't knew you can add argument like depth to .flat and about Set method, tysm!

  • @psydook
    @psydook 8 หลายเดือนก่อน

    been waiting for this forever. Thank you man

  • @felixkiptoo421
    @felixkiptoo421 8 หลายเดือนก่อน

    You really did simplified my flatMap() understanding

  • @jischkebd
    @jischkebd 8 หลายเดือนก่อน +2

    you explain these concepts better than the majority of the teachers out there!

  • @0luckyluca0
    @0luckyluca0 8 หลายเดือนก่อน

    amazing timestaps, i always wanted to skip to the topic "6" :D

  • @piyushaggarwal5207
    @piyushaggarwal5207 8 หลายเดือนก่อน +5

    Personal Notes, don't see - Object.groupBy(), Map.groupBy(), Array.with(1, 2), Array.at(-1), Array.fill(1, 1, 3), Array.toReversed(), Array.toSorted(), Array.toSpliced(), Array.flat(2), Array.findLast(), Array.reduceRight()

    • @SoreBrain
      @SoreBrain 8 หลายเดือนก่อน +1

      Saved me some time, ty

    • @piyushaggarwal5207
      @piyushaggarwal5207 8 หลายเดือนก่อน

      @@SoreBrain I have written down according to me. Skipping things.

    • @SoreBrain
      @SoreBrain 8 หลายเดือนก่อน +1

      @@piyushaggarwal5207 I realized you left some out, coincidentally the ones I also don't care about (yet) or already knew well. Thanks for the edit and letting me know tho!

  • @yellowbonbon1
    @yellowbonbon1 7 หลายเดือนก่อน

    Thank you for this sharing very helpful. Just want to add this, toReversed, toSorted and toSpliced create a new array. However, they do not do deep clone. In some use case, React could not detect the change if the change is within an object of object. It will be better to note this. "create a new array" somehow could cause confusion.

  • @daedalus5070
    @daedalus5070 8 หลายเดือนก่อน +6

    Prime made a comment recently about some of these and I kind of agree... we need a toMap, toFilter that does mutate the original array. Just to keep JS consistently inconsistent. 😉

  • @kuhaniresti
    @kuhaniresti 8 หลายเดือนก่อน

    hey, did it come into your mind of building hair gel products lately? great tutorials always

  • @MichaelCampbell01
    @MichaelCampbell01 8 หลายเดือนก่อน

    A fun exercise is to implement all these methods in terms of `reduce()`.

  • @Thassalocracy
    @Thassalocracy 8 หลายเดือนก่อน +15

    It's unfortunate that a lot of these methods are not used more due to the predominance of React in the JavaScript world. React wants to go the way of purely functional programming, so mutating functions like pop, shift, unshift are a big no-no. But if somehow JavaScript could be used in data science then these methods could really come in handy. But first, someone has to come up with handy data science packages like numpy, pandas, scikit 😅
    PS: I actually did post a comment earlier but deleted it because I made some mistakes and didn't want to create unneeded controversy 😅

    • @daleryanaldover6545
      @daleryanaldover6545 8 หลายเดือนก่อน +3

      good thing we don't use react in our projects

    • @user-ck7ts3ml1g
      @user-ck7ts3ml1g 8 หลายเดือนก่อน

      @@daleryanaldover6545 What is used?

    • @sethwright2518
      @sethwright2518 8 หลายเดือนก่อน +2

      These new functions (most of them at least) are actually good for React specifically because they don't mutate the originals arrays.. so it works better for functional programming 🎉

  • @dave6012
    @dave6012 8 หลายเดือนก่อน

    Shift and unshift are how I do BFS when writing algos in JS

  • @sureshanandsekar4384
    @sureshanandsekar4384 8 หลายเดือนก่อน

    sir could you please tell me where is the link for that cheet sheet , am ur new subscriber . you are my guru. and getting each time inspired by ur video ....

  • @BokoMoko65
    @BokoMoko65 8 หลายเดือนก่อน +1

    Curiously, it's note supported in Node.js. Although it's very easy to implement
    function groupBy(list, keyGetter) {
    return list.reduce((ac, curr) => {
    const key = keyGetter(curr);
    ac[key] = ac[key] || [];
    ac[key].push(curr);
    return ac;
    }, {});
    }

    • @michaelharrington5860
      @michaelharrington5860 8 หลายเดือนก่อน

      Alternative:
      function groupBy(array, key) {
      return array.reduce((groupedItems, item) => {
      const keyValue = item[key];
      if (!groupedItems[keyValue]) {
      groupedItems[keyValue] = [];
      }
      groupedItems[keyValue].push(item);
      return groupedItems;
      }, {});
      }
      let groupedByName = groupBy(people, 'name');
      console.log(groupedByName);

  • @aundefined
    @aundefined 8 หลายเดือนก่อน

    Great video! Keep it up 💯

  • @meqdadmoradi
    @meqdadmoradi 8 หลายเดือนก่อน

    Please make a video about blobs and array buffer

  • @BokoMoko65
    @BokoMoko65 8 หลายเดือนก่อน

    the with method is kind of superfluous because we can already use the destructuring technique. Like, putting something at the beginning
    let inTheBeginning = [ newThing, ... people]
    let inTheEnd = [ ... people, newThing]
    But if the idea is to insert some value somewhere in the middle of the array, the with is handy indeed

  • @leandrohendrix6487
    @leandrohendrix6487 8 หลายเดือนก่อน

    I can't use 'with method' in NodeJs. Should I Install some nodeJs package for use it?

  • @vichikes
    @vichikes 8 หลายเดือนก่อน

    Groupby is super useful

  • @codeguy11
    @codeguy11 8 หลายเดือนก่อน +1

    "20+ Must Know Array Methods That Almost Nobody Knows": 💀
    Me using VSCode's autocomplete (and sometimes MDN docs) to browse and explore all JavaScript APIs and features: *Look what they need to mimic a fraction of our power*

  • @vergil_389
    @vergil_389 8 หลายเดือนก่อน

    Hello Kyle.
    Will you avail your course on offer (on a discounted rate) for Christmas. or Before Christmas. 🤞🤞🤞

  • @cadekachelmeier7251
    @cadekachelmeier7251 8 หลายเดือนก่อน

    I use .fill when I just want to map over a range of numbers. Mapping over new Array(x) doesn't work since there aren't any keys. But you can do
    new Array(x).fill(0).map((val, index) => index)

    • @whosdr
      @whosdr 8 หลายเดือนก่อน +1

      Array.from({length:x}) or [...Array(x)] are also viable solutions.

  • @raygan3
    @raygan3 8 หลายเดือนก่อน

    Will it be automatically polyfilles if used eq in react?

  • @nidhijha7081
    @nidhijha7081 8 หลายเดือนก่อน

    Only if i would have watched this video one day before, my interview could have been much better 😢

  • @ahmed37551
    @ahmed37551 8 หลายเดือนก่อน

    i think you have done enough intros kyle. just keep in the bio.

  • @VisualArtRonny
    @VisualArtRonny 7 หลายเดือนก่อน

    Apparently my face is buried inside MDN docs, since I knew all of them including the last Set methods

  • @andrillaf
    @andrillaf 8 หลายเดือนก่อน

    It’s good to be a developer on Mac😎

  • @stanmarsh9458
    @stanmarsh9458 8 หลายเดือนก่อน

    groupBy is top!

  • @skywizard3319
    @skywizard3319 6 หลายเดือนก่อน

    I would really love if you started naming the chapters instead of numbering them

  • @prafullkumar6369
    @prafullkumar6369 8 หลายเดือนก่อน

    amazon-chime-sdk-component-library-react Please create a video on this

  • @user-mw4jj6vj4r
    @user-mw4jj6vj4r 8 หลายเดือนก่อน

    Hi everyone, i have node js version 21, but i cant use this methods in vscode. How can i enable this methods?

  • @shivan2418
    @shivan2418 8 หลายเดือนก่อน

    I use lodash for most of this functionality.

  • @cbbcbb6803
    @cbbcbb6803 7 หลายเดือนก่อน

    What did people do when there was just array?

  • @DarrenJohn10X
    @DarrenJohn10X 8 หลายเดือนก่อน

    .fill() ignores in sparse arrays... just so folks are aware! So you can't build an array of 5 "*" with this: let a = Array(5).fill("*")
    You would need to first map to a non-undefined value every element you want star-ified.

  • @amitd1927
    @amitd1927 8 หลายเดือนก่อน

    How about performance of each function

  • @aliampichelmilan3345
    @aliampichelmilan3345 8 หลายเดือนก่อน

    Nice vidio crack!, greetings!

  • @SamuelKarani
    @SamuelKarani 8 หลายเดือนก่อน

    I think you made an error equating flatMap with flat(infinity).map. I agree with @FunctionGermany in the comments

  • @mecozir
    @mecozir 8 หลายเดือนก่อน

    part yield function set key specify task

  • @BokoMoko65
    @BokoMoko65 8 หลายเดือนก่อน

    Is there a method to "flat" an object? That is, to make a deep copy of the entire object made of other objects?

    • @benas989989
      @benas989989 8 หลายเดือนก่อน +2

      Old way:
      const copy = JSON.parse(JSON.stringify(foo))
      New way:
      const copy = structuredClone(foo)

  • @cm3462
    @cm3462 8 หลายเดือนก่อน

    Fantastic

  • @21Kikoshi
    @21Kikoshi 8 หลายเดือนก่อน

    As a youtuber i wonder if youtubers ever watch themselves at x2 or with no sound to see what its like

  • @sleeplessowl777
    @sleeplessowl777 8 หลายเดือนก่อน

    array instanceof Array

  • @bronzekoala9141
    @bronzekoala9141 8 หลายเดือนก่อน

    Nice, but who th thought "unshift" was a good name for that???

  • @turolretar
    @turolretar 8 หลายเดือนก่อน

    “Let’s see Paul Allen’s array methods”

  • @BauldyBoys
    @BauldyBoys 8 หลายเดือนก่อน

    CSS starts calling everything start and end Javascript starts using left and right. Classic.

    • @chrisjohanesen
      @chrisjohanesen 8 หลายเดือนก่อน

      And then there’s “findLast” 🙄

  • @amuuuinjured
    @amuuuinjured 8 หลายเดือนก่อน

    knew all of them except last experimental methods...

  • @vaishnomatabhaktamandali2000
    @vaishnomatabhaktamandali2000 8 หลายเดือนก่อน

    In bathroom rn but listening to lectures

  • @user-ik7rp8qz5g
    @user-ik7rp8qz5g 8 หลายเดือนก่อน

    Having reduceRight makes it sound like default reduce is wrong

  • @krzysztofrozbicki1776
    @krzysztofrozbicki1776 8 หลายเดือนก่อน +1

    The main question is - are they faster than simple for() loop ?
    I have been playing with the js loops lately and it seems that for array of 10 millions random numbers the for() loop is much faster than: filter, find, forEach, map and reduce.
    And by faster i mean like 10x times faster.
    The only method that was faster was the build in sort() method. That worked better even then insertion sort/ merge sort/ or quick sort Algorithm made in JS for loop - i am not sure but i suspect this is because of V8 chromium engine which uses C++

    • @catalintudorciurte309
      @catalintudorciurte309 8 หลายเดือนก่อน

      There are some things to unpack here. A for loop is inlined, while the methods call the given function every single time. Also, a for loop gives you the oportunity to mutate the old array, while most of the other functions create a new array every single time

  • @LetrixAR
    @LetrixAR 8 หลายเดือนก่อน

    The namings for some of these methods are really confusing

  • @Pareshbpatel
    @Pareshbpatel 8 หลายเดือนก่อน

    Nice one, Kyle. Thanks.
    {2023-12-14}

  • @michaelharrington5860
    @michaelharrington5860 8 หลายเดือนก่อน

    `groupBy` alternative for node.js users:
    function groupBy(array, key) {
    return array.reduce((groupedItems, item) => {
    const keyValue = item[key];
    if (!groupedItems[keyValue]) {
    groupedItems[keyValue] = [];
    }
    groupedItems[keyValue].push(item);
    return groupedItems;
    }, {});
    }
    let groupedByName = groupBy(people, 'name');
    console.log(groupedByName);

  • @shirakuyanai4095
    @shirakuyanai4095 8 หลายเดือนก่อน +1

    First time here within 1 minute.

  • @foxcryptoboss
    @foxcryptoboss 8 หลายเดือนก่อน

    something is very off with the camera and sound sync. looks scary.

  • @mecozir
    @mecozir 8 หลายเดือนก่อน

    wait general fixed job dom

  • @LawJolla
    @LawJolla 8 หลายเดือนก่อน

    This video taught me that someone still uses a PC. Wild.

  • @jasonlough6640
    @jasonlough6640 8 หลายเดือนก่อน +3

    There should be an opposite to .flat().
    flat() destroys the structure. What if we were to specify a structure and give an array, like:
    Array.inflate(arr, structure)
    where
    arr = [5,11,87,2]
    structure = ['age', weight']
    which outputs
    [
    { age: 5, weight: 11},
    { age: 87, weight: 2},
    }

    • @whosdr
      @whosdr 8 หลายเดือนก่อน +2

      function inflate( values, structure ) {
      return Object.values(
      Object.groupBy( values, (e,i)=>Math.floor( i/structure.length ) )
      ).map( e => Object.fromEntries(
      e.map( (v,i) => [structure[i],v] )
      )
      );
      }

  • @CoryTheSimmons
    @CoryTheSimmons 8 หลายเดือนก่อน +2

    reduce is king. Everything else is just a lodash helper.

  • @mangadi3859
    @mangadi3859 8 หลายเดือนก่อน

    oh sh- i have to change my .sort() to .toSorted()?

  • @genyklemberg
    @genyklemberg 8 หลายเดือนก่อน

    Who cares what you are talking about, I already heard about it and still don't use it 😢 I think I need to visit coding interviews to practice that more often😂

  • @bryson2662
    @bryson2662 8 หลายเดือนก่อน

    Most shocking referral, Kyle uses windows

  • @nomadshiba
    @nomadshiba 8 หลายเดือนก่อน

    epic

  • @montebont
    @montebont 8 หลายเดือนก่อน +1

    Solution looking for a problem...

  • @Anonymous____________A721
    @Anonymous____________A721 8 หลายเดือนก่อน +1

    388th view

  • @AGSTRANGERTunisianAuthor
    @AGSTRANGERTunisianAuthor 8 หลายเดือนก่อน +40

    If almost nobody knows them then probably you don't need to know them

    • @yadusolparterre
      @yadusolparterre 8 หลายเดือนก่อน +12

      How else am I going to flex in front of my colleagues

    • @vodafoneuser1690
      @vodafoneuser1690 8 หลายเดือนก่อน +2

      As demonstrated in this video lol

    • @angrytvrobot6130
      @angrytvrobot6130 8 หลายเดือนก่อน +6

      I'm sure there will be a few people who see this and go, "oh that will make my bit of code much easier!" There's probably a use case, or they wouldn't exist.

    • @TaufeeqAhmed-fq9hq
      @TaufeeqAhmed-fq9hq 8 หลายเดือนก่อน

      Nice motto 👏👏

    • @VskiDevs
      @VskiDevs 8 หลายเดือนก่อน +1

      He said they’re just as useful 🫴🏿

  • @vijaykv555
    @vijaykv555 8 หลายเดือนก่อน +3

    First View

  • @olegkravchenko9655
    @olegkravchenko9655 8 หลายเดือนก่อน

    С*ка, до слёз! Даже плюсик поставил от нахлыва чуйств :D

  • @mecozir
    @mecozir 8 หลายเดือนก่อน

    post none if code expire

  • @akshaykommu4524
    @akshaykommu4524 8 หลายเดือนก่อน +1

    2nd view

  • @sevgiligencler
    @sevgiligencler 8 หลายเดือนก่อน

    Very noob

  • @user-xf8mc8bd2u
    @user-xf8mc8bd2u 8 หลายเดือนก่อน

    Is there a new way to get the last item in the array instead of the old array[array.length - 1]?

    • @Popo-pd3ps
      @Popo-pd3ps 8 หลายเดือนก่อน

      Just simply use array.at(-1)

  • @ravisankarp61
    @ravisankarp61 8 หลายเดือนก่อน

    Please explain a bit slowly, you are explaining like you are running a sprint.

    • @windubitably
      @windubitably 8 หลายเดือนก่อน

      You can slow the video down. I think his pacing is great.

  • @dasten123
    @dasten123 8 หลายเดือนก่อน

    I really don't see the point of `array.at`.. even for negative indexes, I would prefer `array[array.length - x]` or am I too old-fashioned? :o

    • @soniablanche5672
      @soniablanche5672 8 หลายเดือนก่อน +2

      it saves you a line of code to store the array in a variable
      example:
      const array = getArrayFromApiCall();
      array[array.length - 1]
      vs
      getArrayFromApiCall().at(-1);

    • @dasten123
      @dasten123 8 หลายเดือนก่อน

      @@soniablanche5672 Ahh!! Yes that makes sense! Thank you, I feel so much better now, haha :D

  • @mecozir
    @mecozir 8 หลายเดือนก่อน

    wait general fixed job dom