Composition over Inheritance

  Рет қаралды 509,270

Fun Fun Function

Fun Fun Function

Күн бұрын

💖 Support the show by becoming a Patreon
/ funfunfunction
This is a weekly show where we try to become more confident and excited about programming by learning intriguing things that we didn’t know before. Today, we are are going to talk about composition over inheritance. Inheritance is when you design your types after what they are, while composition is when you design your types after what they cando. We are going to learn about the limitations of inheritance, and how to solve them using composition.
Full script here: / cb6f88070205
💛 Follow on Twitch
We record the show live Mondays 7 AM PT
/ funfunfunction
💛 Fun Fun Forum
Private discussion forum with other viewers in between shows. www.funfunforum.com. Available to patron members, become one at / funfunfunction
💛 mpj on Twitter
/ mpjme
💛 CircleCI (Show sponsor)
Robust and sleek Docker-based Continuous Integration as a service. I used CircleCI prior to them becoming a sponsor and I love that their free tier is powerful enough for small personal projects, even if they are private. Use this link when you sign up to let them know you came from here:
circleci.funfunfunction.com
💛 Quokka (Show sponsor)
Wonder how MPJ evaluates JavaScript inline his editor. Quokka is the answer - use this link when you buy to let them know you came from here:
quokka.funfunfunction.com
💛 FUN FUN FUNCTION
Since 2015, Fun Fun Function (FFF) is one of the longest running weekly KZbin shows on programming 🏅 thanks to its consistency and quality reaching 200,000+ developers.
🤦‍♂️ The Failing Together concept is what makes FFF unique. Most coding content out there focus on step-by-step tutorials. We think tutorials are too far removed from what everyday development is like. Instead, FFF has created a completely new learning environment where we grow from failure, by solving problems while intensively interacting with a live audience.
Tutorials try to solve a problem. Failing Together makes you grow as a developer and coworker.
📹 Each show is recorded live on Twitch in a 2-hour livestream on Mondays. The host, assisted by the audience, is tasked to complete a programming challenge by an expert guest. Like in the real world, we often fail, and learn from it. This, of course, reflects what the audience identifies with, and is one of the most praised aspects of the show.
⏯ On Fridays, an edited version of the show is adapted for and published on KZbin.
Content Topics revolve around: JavaScript, Functional Programming, Software Architecture, Quality Processes, Developer Career and Health, Software Development, Project Management

Пікірлер: 859
@thiagotimm3668
@thiagotimm3668 5 жыл бұрын
"The problem with inheritance is that encourages you to go predict the future..." Just genius Matt!
@jones848
@jones848 9 ай бұрын
Yeah hearing that has been like an epiphany for me. Such a great way of looking at it
@AlexandriaRohn
@AlexandriaRohn 8 жыл бұрын
07:03 "Inheritance encourages you to build this taxonomy of objects very early on in the project. And you are most likely going to make big design mistakes while doing that. Because humans cannot predict the future." "I think it's just better to use composition from the start. It's more flexible, it's more powerful, and it's really easy to do."
@hugodsa89
@hugodsa89 4 жыл бұрын
This is my number one problem in every single project I do. This is coming from someone who always developed in a class oop style, and now changing is so much more difficult because I am so used to what I used to do. However, I agree 100% that it is better in most scenarios, the only scenario that I would use a inheritance over composition is when I am writing a base class and I want to enforce implementation of an abstract behaviour that all objects in future must have.
@schirmcharmemelone
@schirmcharmemelone 3 жыл бұрын
@@hugodsa89 So for example you make a base composition that the real compositions have to inherit? like returning the name or type of the composit and some sort of copy function or how to get the 'real' 'raw' data so you can leave that in an array with all other composite data of the same type in sequential memory. I think something the Video has not mentioned is the fragmentation of OOP data. If you want to update all poop states of all Animals then it makes no sense to jump through multiple pointers to get to the data. This would just give you cash misses and make your program slow. If you keep all position data in one sequential memory your cpu will chew right through it. Loading sequential memory can be 100x faster. Nothing beats an array.
@plutopulp
@plutopulp 2 жыл бұрын
@@hugodsa89 I completely agree. The only time I use inheritance-type pattern is writing interfaces/abstract base classes, but even there it's not inheritance but enforcing implementation as you say.
@miltonr87
@miltonr87 2 жыл бұрын
Amazing quote! 😄
@AlessandroStamatto
@AlessandroStamatto 7 жыл бұрын
Composition gets better with Object Spread (sugar for Object.assign): return {...barker(state), ...driver(state), ...killer(state)}
@trappedcat3615
@trappedcat3615 6 жыл бұрын
is this standardized yet
@hiimshort
@hiimshort 6 жыл бұрын
Red Bear it is standard, but not supported everywhere yet :(
@amypellegrini1732
@amypellegrini1732 6 жыл бұрын
You can use transpilers anyway
@michaelwalker1013
@michaelwalker1013 4 жыл бұрын
Was just about to comment the same thing ! That’s great! Good tip!
@can_pacis
@can_pacis 4 жыл бұрын
Spread operators are not just sugar for Object.assign. Object.assign mutates the given object, thus may trigger object setters while spread operator creates a brand new iterable making it more useful with immutable techniques.
@SlhT-xe1cc
@SlhT-xe1cc Жыл бұрын
I really love how extremely simple your example are presented! it really makes me roll my eyes when "beginner" guides use long-winded examples where you have to think about a thousand things at the same time and get confused and lost in concepts unrelated to what you're actually trying to learn.
@BenRangel
@BenRangel 7 жыл бұрын
I blame the overuse of inheritance on college focusing too much on OOP and training us to overuse that pattern, and cram inheritance into our projects. A perfect inheritance hierarchy is a wonderful thing that gives you a sense of structure and a mental model. But it's not feasible in today's agile world cause it's unmaintanable. Most agile projects would benefit from using composition.
@cosname
@cosname 7 жыл бұрын
Exactly! There are very rare situation where we would like to use inheritance, this idea should nailed in very narrow scenario that can be thinked as undividable unit, though should be inherited. For example of how the barker is barking actually.
@velocityra
@velocityra 7 жыл бұрын
What is presented in the video *is* actually *(multiple)* inheritance. See the discussion here: www.reddit.com/r/programming/comments/5dxq6i/composition_over_inheritance/da8bplv
@PHILOSOPHYALPHAMALE
@PHILOSOPHYALPHAMALE 5 жыл бұрын
I think so too. Java was the de facto learning language for computer science in the early 00s and OOP was everything.
@Ahmetfusta
@Ahmetfusta 5 жыл бұрын
@@velocityra that was an interesting read
@ShaferHart
@ShaferHart 5 жыл бұрын
@@PHILOSOPHYALPHAMALE Still is in many places and the dynamic is the same if they teach C# instead. It kind of feels very anachronistic that they still have such a heavy emphasis on OOP as if it's the end all be all of programming.
@ahmarsiddiqui
@ahmarsiddiqui 8 жыл бұрын
07:03 turning point of my perception of programming in general I always found it hard to implement inheritance in real world applications but still used it thinking that's how I was taught oop and that's how I'm suppose to write programs thanks a lot for such a great video
@ThomasBurleson
@ThomasBurleson 8 жыл бұрын
Inheritance is appropriate for single-level abstract classes where you define expectations of abstract methods that MUST be defined in a subclass. You effectively have written a API-contract. In almost all other cases, I favor composition. I love your videos and the style of teaching [often] techno-jargon.
@funfunfunction
@funfunfunction 8 жыл бұрын
+Thomas Burleson thanks, Thomas! And yeah, that seems like a sensible approach.
@ThomasBurleson
@ThomasBurleson 8 жыл бұрын
Keep up the great work! Your videos are wonderful resources and so appreciated!
@davidtorroija5141
@davidtorroija5141 8 жыл бұрын
Me too very good teacher :D
@FalconFetus8
@FalconFetus8 6 жыл бұрын
Why not use an interface instead?
@2thinkcritically
@2thinkcritically 8 жыл бұрын
For those browsers that don't support Object.assign yet: if( !Object.assign ) { Object.assign = function( obj, items ) { var src = Object( items), target = Object( obj ) Object.getOwnPropertyNames( src ).forEach( function( k ) { target[ k ] = src[ k ] }) return target; } }
@ihateyourusernames
@ihateyourusernames 8 жыл бұрын
By Jove! This is the most eloquent explanation as to why composition is a less complicated route than inheritance. Thanks for sharing!
@bobbyadamson2333
@bobbyadamson2333 8 жыл бұрын
I have spent about a week reading things that dance around what you have explained so clearly here. Thank you for all you do
@robroem
@robroem 7 жыл бұрын
I just have to say: You give the best example of WHY composition should be favored that I've ever seen. Anytime someone asks me, or this topic comes up; I immediately link them to your video. You explain so much better than I ever could. Thanks for that!
@juliankrispel-samsel218
@juliankrispel-samsel218 8 жыл бұрын
You are a genius good sir. This is gold! Funniest, simplest, most bestest articulated video thing on software design I have seen to date. Thanks! Keep em coming!
@youAmera
@youAmera 7 жыл бұрын
Program to an interface and not an implementation - this is a good practice
@Rashomon69
@Rashomon69 7 жыл бұрын
MPJME - I've been a developer for almost 20 years. I've developed in multiple languages - COBOL, ActionScript, Objective C, Java, JavaScript, PHP, etc. I feel like I've always been "behind the curve", because I've had to learn so many languages (frequently starting over). I just discovered your channel last week, and I've been binge watching, because I have learned a LOT from them. You are filling in the pieces that I've been missing from being a "self-taught" developer. I feel like I'm now becoming the top-notch developer that I've always wanted to be. THANK YOU!!!
@klausdupont6335
@klausdupont6335 Жыл бұрын
Bro makes the design patterns fun! The use cases are well-chosen and the explanation very straightforward. Nice video!
@danmartin1726
@danmartin1726 8 жыл бұрын
Love this "Real World" explanation training style. Great job!
@FairyRat
@FairyRat 2 жыл бұрын
This is so cool! I'm totally on board with composition. Also HUGE thanks for your work! Awesome stuff! The Odin Project represent!
@darrenandveronica
@darrenandveronica 8 жыл бұрын
I had a dream about trying to flesh out a new program with inheritance. I woke up sweating. That's totally true. Man this video was great. I watched quite a few of your vids now, you crack me up.
@AndrehHimself
@AndrehHimself 5 жыл бұрын
I've just stumbled upon this video searching composition vs. inheritance for C# to take a second point of view as it was still unclear after watching a lesson from a course on Udemy. Your funny and practical approach was so clear and enlightening that instantly earned both my like and subscription. Thanks for taking your time to share it with lost travelers (:
8 жыл бұрын
I especially like this video! Very exciting to learn about composition :) Really thankful for your videos, they are informative without being boring, and tells me just enough about a topic to get me excited about diving deeper into it. Would be nice to hear about some more ES6 goodies that I should be using!
@funfunfunction
@funfunfunction 8 жыл бұрын
+My Högblom Thanks, My! Might be some ES6 stuff coming in the pipe, we'll see!
@benjonyc
@benjonyc 8 жыл бұрын
I am a front end developer working in NYC. I really enjoy your explanations and have been watching your videos and coding up all the examples. I really enjoy both your explanations and when you have live coding examples. If you had a paid course I would surely purchase it. Thanks for creating this channel!
@doug2k1
@doug2k1 8 жыл бұрын
Just found about your channel. Clear and fun explanations! Keep up the good work!
@LethiuxX
@LethiuxX 9 күн бұрын
The amount of time saved by my brain trying to figure out how to adapt classes for abstraction. I've just switched back to more of a functional paradigm from OOP, and it's quite refreshing. Composition for the win.
@JamesSpeirs
@JamesSpeirs 6 жыл бұрын
This was so good. Clear, concise, complete, and humorous.
@priyankamalviya3613
@priyankamalviya3613 7 жыл бұрын
One video and I am an ardent fan!!!!! How amazing is this explanation!!! I kept viewing this link over and over again both here as well as medium.com but never actually spent these 8-9 minutes for some reason and kept myself so confused on this topic!!!! For the first time I am so clear as to why most experienced programmers favor composition!
@TomLikesGuitar
@TomLikesGuitar 8 жыл бұрын
I'm working on transitioning many years of C++ experience into Javascript for a new job and I just wanted to say that your videos have been a great tool to help me figure out the common standards and concepts (as well as helping me prioritize what, exactly, is worth learning in this crazy-ass, over-complicated language lol). There aren't a ton of educational videos that are entertaining and well-produced, but yours manage to be both.
@peripona
@peripona 7 жыл бұрын
At First.. I felt reluctant to watch the video with such Handsome Poster Image ( : Scarcastic :D ) But then... I am spellbound by the way you have conveyed such a concept with such innovative, indulging and entertaining way.. Kudos. Yo!! your video rocks. I ill subscribe and follow your Videos :) With love from India !
@Mr_Wiley
@Mr_Wiley 4 жыл бұрын
You know that scene in The Office when Michael says, ok now explain it to me like I'm a 5 year old. Well, I feel like you just did that and it worked perfectly. I'm not learning Java but the two concepts flowed into my brain immediately and easily from this tutorial. Simple and effective, and entertaining delivery. Liked!
@tarekghosn3648
@tarekghosn3648 2 жыл бұрын
hell the first few lines were enough to put it in place. i found you after15 plus videos and yours was the only one who truly explained the difference in how to use them directly while thinking sanks
@jeffersonian4
@jeffersonian4 6 жыл бұрын
Fantastic. This is easily the best explanation of classical vs prototypal inheritance I've run across. Great vid! New subscriber right here
@ariemilner8845
@ariemilner8845 8 жыл бұрын
Absolutely love your show, I think your show is so beneficial (and fun and interesting and awesome etc...) not just because of your skills as a programmer, but also your ability to *keep things simple* in your explanations! Often people explaining things like to over complicate things to "sound smarter".... not fun at all. Please keep it up!!!!
@adamzerner5208
@adamzerner5208 7 жыл бұрын
LIGHTBULB! You just made my day. You just leveled up my programming skills in 8 minutes. Thank you!
@traviszito6408
@traviszito6408 11 ай бұрын
After reading a bunch of articles about this topic, I have to say you really show why composition is better in most if not all cases without over complicating things. The way you explain it deliberately and with simple language really helped me understand just what exactly composition is! I have definitely found myself in past projects saying, Well I already made this class, if I break it up or even remove it entirely then the whole program falls apart. Going forward I'm going to be more wary of this.
@praguepanda
@praguepanda 8 жыл бұрын
This is a nice explanation. What you consider "composition" is however called "concatenative inheritance". Composition is achieved by passing more specialized components into a more general one. By doing so, you create an object model tree in which objects reference and use other objects rather than making a type tree (taxanomy) in which objects are tightly coupled to their parents (prototypal delegates or parent classes) as opposed to loose coupling in case of composition.
@SeyferX
@SeyferX 6 жыл бұрын
because js and js devs are 'unique' - they invent own term definitions...
@rebornreaper194
@rebornreaper194 6 жыл бұрын
Oleg Abrazhaev "composition" is a general computer science term, not js specific
@jeffwells641
@jeffwells641 6 жыл бұрын
The way he described it in the video seems very similar to composition in Go, so I think the industry is settling on the term.
@panzerdp
@panzerdp 4 жыл бұрын
Exactly! The video misunderstands the term composition, which is actually a delegation of implementation to a delegate object contained within a bigger object (has a).
@keplar7243
@keplar7243 4 жыл бұрын
Thank you so much for these videos they're by far the most concise yet clear and straight to the point.
@Avatan5
@Avatan5 Жыл бұрын
Here from The Odin Project. Great video, very helpful, and explained in a fun way too! Thank you!
@kunalpareek83
@kunalpareek83 7 жыл бұрын
Man this is such a fantastic vid. Thanks for the wisdom. Inheritance seems like such a natural way to think about things. (I was introduced to classes via Django) but I have faced the exact problem you defined above. Must rethink object construction using composition.
@shaneunger
@shaneunger 7 жыл бұрын
I'm new to the concept of factory functions (well, JS in general) but I understand Object.prototype.someMethod as a way of creating methods or properties that an object can inherit. One of the major benefits as I understand it is that if you have your object inherit methods rather than instantiating objects with them it's more memory efficient. Using this concept of factories, and composition, are you getting the same benefits? If I create 10 murderRobotThingies, am I creating 10 objects each with their own method, or are they kind of inheriting the method, almost like I used the Obj.prototype pattern?
@PRATIK1900
@PRATIK1900 4 жыл бұрын
Same Question. notice us mpj senpai
@ericg3065
@ericg3065 3 жыл бұрын
3 years and still no answer
@ndbass09
@ndbass09 11 ай бұрын
3.5 minutes in and I have to stop the video to like and comment...you made such a clear, sensible, and persuasive case. Thank you!
@TusharShukladevx
@TusharShukladevx 4 жыл бұрын
First time here and dude you're awesome. The way you've explained all of this is fun, engaging and entertaining. Liked & Subscribed.
@micaevski
@micaevski 8 жыл бұрын
hey, love your show. can you please make an episode about modules and separation to different files. thank!
@anthonychung1425
@anthonychung1425 8 жыл бұрын
I'd LOVE it if you gave sample "tasks" for us to do to test ourselves. it sounds suspiciously like homework but it's the only way I could ever confirm I understood anything. haha
@funfunfunction
@funfunfunction 8 жыл бұрын
Oh shit, that is a FANTASTIC idea! I'll try to remember to do it next video.
@ChrisGeirman
@ChrisGeirman 8 жыл бұрын
+Anthony Chung I agree... this requires practical application before I'd know I truly understand it.
@anthonychung1425
@anthonychung1425 8 жыл бұрын
yeah it doesn't have to be anything super complex or detailed. maybe just like a brainteaser or something to think about and try till the next week. :) thanks for responding!
@funfunfunction
@funfunfunction 8 жыл бұрын
+Anthony Chung It's a bizarrely good idea, I think. Especially fronting it as a "brainteaser". It would also be a interesting success metric for the video - i.e. how many was excited by the video enough to try their hand at the brainteaser, and how many understood the video well enough to solve it. I'm not commiting to doing this yet because I like to let idea mull over for a few weeks before doing them, but I really like this concept intuitively.
@hyperrealhank
@hyperrealhank 8 жыл бұрын
+mpjme personally, i dont care for it. your videos are enlightening enough where i wouldnt ever feel the need for an exercise. however, i do feel like a github gist for each video would be appropriate
@dylanking165
@dylanking165 2 жыл бұрын
came from the odin project. can't remember if it was linked directly there or if this was linked in an article they had me read. I love your energy and you explained this in a way where somebody who's struggling came away knowing more than I did. thanks so much.
@wypimentel
@wypimentel 7 жыл бұрын
I just discovered you today, you makes things easier. And you code is so elegant, you make art with your code.
@nosajghoul
@nosajghoul 6 жыл бұрын
Dude I just answered a question about composition on quora and referenced this video and the picture it chose to use of you is freaking hilarious.
@jakubrpawlowski
@jakubrpawlowski 6 жыл бұрын
Great video! I've just read 100 pages on inheritance in "Secret of the JavaScript Ninja" by John Resig and I had so many doubts about going this route and now I have an alternative to explore. Thank you so much!
@klesk44
@klesk44 7 жыл бұрын
As a (French ^^) PHP developer, your JavaScript approach is so interesting and so clear ! Thanks a lot for sharing your skills :p And stay curious ;)
@ChristopherOkhravi
@ChristopherOkhravi 6 жыл бұрын
Super good point about predicting the taxonomy being at the core of the problem. Well put. Thank you :)
@michaelffasd23
@michaelffasd23 6 жыл бұрын
I love the idea of mix-and-match types, it's like the best of both worlds between Classes and Interfaces. However, wouldn't it be difficult in a larger scale app to keep track of which properties are in which classes? Say I wanted to add "barker" into the Object.assign - wouldn't I have to check ALL my other factories to make sure I'm not overwriting anything?
@moszis
@moszis 6 жыл бұрын
Good god man.. you just broke my 20 years of Java experience. I'm not even kidding. Big thumbs up for this video
@sc76399
@sc76399 8 жыл бұрын
Brilliant video, loved the Robot Murder Dog made me laugh. It's very thought provoking and I love the idea of composition because you only get the functionality that you need over all the functionality you might need or just because some other children use that functionality I'm going to have to learn more about it.
@arbitraryCharacters
@arbitraryCharacters 8 жыл бұрын
This is such a clear explanation! Thank you for this! 👏
@LeonardoFrangelli
@LeonardoFrangelli 8 жыл бұрын
Your videos are awesome for many reasons, but to me, the best thing is that you aways come up with the "But.....". Thanks man, and continue with this great work.
@StephanHoyer
@StephanHoyer 8 жыл бұрын
You speak to me from the soul, as always. Great video. Composition outperforms prototypal Inheritance not only in simpler structure but also in better readability due to the fact, that you don't have to use that f.....g "this" anymore. Sadly I can't come to this years JS-Conf because some serious childbirth is going one here :). I'd love to have a chat with you there. Have Fun in Berlin!
@carinlynchin
@carinlynchin 6 жыл бұрын
BEAUTIFUL. thanks so much for the easier description. I have been hearing about it but, let's be honest, a lot of the resources befuddle their explanation to a bunch of terms and I personally learn better with examples. So thank you. I actually started learning OOP in college, so it is pretty hard wired into my mind until the job I'm in which they dont' want OOP... I never understood why until I started reading about this recently.
@daliborkozar870
@daliborkozar870 2 жыл бұрын
I fist watched this video 2 years ago and now coming back to prepare for an interview
@thesravan079
@thesravan079 8 жыл бұрын
A super tutorial I found about Composition and Inheritance in JavaScript. Thanks mpjme!
@jamieshelley6079
@jamieshelley6079 3 жыл бұрын
It's interesting, I often use both, when I know the inhereted functions will never change. Or they themselves are generics/Utility. Best of both words!
@drrecommended4850
@drrecommended4850 Жыл бұрын
great explanation thank you! will definitely be running with composition over inheritance! long live the prototype!
@proclaimm
@proclaimm 8 жыл бұрын
first time seeing your video from a friend's referral, haha, you crack me up and it's interesting to see daily life example that you used to better illustrate the concept. thank you and I subscribed.
@funfunfunction
@funfunfunction 8 жыл бұрын
+Jim Kang Hey jim, that's great to hear. Welcome to the channel and say thanks from me to your friend!
@DiogoReusCarlos
@DiogoReusCarlos 8 жыл бұрын
I really loved the video and i end up here after follow the stamp project e all the discussion over composition after the react release. I would like some tips, or even a sequence video for this one, on how to organize projects where the developers use composition. In my OO or MVC projects this is really straightforward but now with composition i am ending up with a huge helpers and functions directory witch doesnt give much structure to it. Another thing i would like you input in is the observable vs promisses discussion and how you guys at spotify are dealing with asynchronous programming! Keep up the good work!
@adamo901
@adamo901 3 жыл бұрын
Outstanding tutorial, thanks a lot. I really liked the way you presented this topic.
@edieshockpaw
@edieshockpaw 4 жыл бұрын
Bob Ziroll's React video brought me here!
@craftoverflow
@craftoverflow 4 жыл бұрын
LOL same
@Dueck25
@Dueck25 7 жыл бұрын
Great video, and a really helpful example and memorable example! Thanks!
@fmvilas
@fmvilas 8 жыл бұрын
hahahahaha! I loved it! Best explanation i've seen ever.
@steavbun4199
@steavbun4199 8 жыл бұрын
What a good explain!! :D I love your explaining
@tracetv8115
@tracetv8115 Жыл бұрын
Absolutely great video! So good examples, thank you very much!
@purovenezolano14
@purovenezolano14 8 жыл бұрын
Thanks for your awesome videos mpjme!
@stevehyuga9216
@stevehyuga9216 6 жыл бұрын
Thanks for your videos, they are amazing. After watching the video I didn´t know how to change the state, if it needs to be changed. I put my fingers in movement and I found two approaches: 1st, use a setter: const barker = (state) =>({ bark: () => console.log(state.sound) }) const setter = (state) =>({ set: (key,prop) => { state[key] = prop } }) const dog = (name) => { let state = { name, sound: "woof" } return Object.assign( {}, barker(state), setter(state) ) } let rufus = dog("rufus") rufus.set("sound", "I'm rufus") rufus.bark() // I'm rufus 2nd, use state to create the object: const dog = (name) => { let state = { name, sound: "woof" } return Object.assign( state, barker(state) ) } let rufus = dog("rufus") rufus.sound = "I'm rufus" rufus.bark() //I'm rufus Which approach you think is better? Thanks in advance.
@elmarvo7505
@elmarvo7505 2 жыл бұрын
Such a brilliant example! Thanks a lot
@Aarmaxian
@Aarmaxian 7 жыл бұрын
Thank you for your videos. They are fantastic!!
@raselkarim2731
@raselkarim2731 3 жыл бұрын
I couldn't wait to subscribe to your channel after watching this video. Love.
@Vilmir
@Vilmir 8 жыл бұрын
A young Christopher Waltz explaining engineering concepts quite well. This kid has a future :)
@jesselisser
@jesselisser 8 жыл бұрын
Thank you for another awesome video!!
@georules
@georules 8 жыл бұрын
This is an excellent video. Well spoken and explained.
@shubhamchandra9258
@shubhamchandra9258 2 жыл бұрын
Lucky to have found this video. Lesson learned: We can always opt for composition. ex- Car is a vehicle. But Car is also has wheels, engine, seats.
@AtileonVA
@AtileonVA 6 жыл бұрын
Clear as ever! You're great, Thanks!
@richie-bonilla
@richie-bonilla 6 жыл бұрын
This explanation is clear AND hilarious. Thank you.
@fcap_2023
@fcap_2023 7 жыл бұрын
I started understand behavioral composition is more powerful than inheritance via concept...thank you for your easy-to-understand video! Appreciated sharing your opinion, learn something new about JS! :)
@yitzhakkornbluth2554
@yitzhakkornbluth2554 7 жыл бұрын
The way I learned the is/has distinction isn't as composition vs. inheritance (where it really makes no sense, as you said), but rather as how you decide whether something should be a subclass (which can be done via composition or inheritance) or a member object. I see inheritance as an attempt to port over a concept from languages where it makes sense (more strongly typed languages make composition much more difficult if not impossible) to a language that doesn't really need it.
@Andrey-il8rh
@Andrey-il8rh 3 жыл бұрын
For me, a great pivotal point in understanding composition over inheritance was (surprise surprise) a move from BEM to Tailwind. It just proved itself so much more powerful when you can compose your interface from utility classes rather than writing inherited Block Element Modifier rules
@TheTwalnb
@TheTwalnb 6 жыл бұрын
I agree with Antony Chung. Some sample tasks would be greatly appreciated. I am new to coding and find it difficult to find tasks that might further my understanding of the more complex concepts. Thanks!
@xJCHMx
@xJCHMx 6 жыл бұрын
This is an awesome video explaining Composition. Thank you
@dvirarazi7351
@dvirarazi7351 6 жыл бұрын
Great video, the explanation and examples were very clear and helpful
@ManyouRisms
@ManyouRisms 8 жыл бұрын
Thanks for the solid content, and encouraging es6. Do you have a pattern or recommendation for namespacing in JS? Cheers!
@IntegralDeLinha
@IntegralDeLinha Жыл бұрын
Thank you! This was very useful and insightful!
@cakeintech
@cakeintech Жыл бұрын
I understand it now tysm! and Very fun it to watch.
@neozoid7009
@neozoid7009 2 жыл бұрын
Awesome explanation also very funny , why I didn't seen this channel♥️👍
@gianlucapaul
@gianlucapaul 7 жыл бұрын
I really appreciate your videos MPJ. I'm not working as a front end dev yet but I think these vids will get me there sooner rather than later. I also really enjoyed starting this video at 1:52 at 50% speed and seeing how drunk you sound :-).
@samimaameri9925
@samimaameri9925 7 жыл бұрын
awesome video man. Nice one!! Funny too!
@lamnot.
@lamnot. 6 жыл бұрын
This is so funny, I am using composition strategy it in solidity and it works perfectly. The mechanism there are modifiers, they also grant permissions as well.
@Gruak7
@Gruak7 4 жыл бұрын
Those examples are absolutely top notch
@Mephistel
@Mephistel 7 жыл бұрын
Hey, I found your channel recently and I'm really digging it. As a primarily C++ dev who's getting into JS, I think your idea of using composition as close to 100% of the time as possible is widely applicable, not just to JS. I am typically in the 'use inheritance when is-a, comp when has-a' camp, but the way you frame the problem makes composition seem logical to use all of the time. I guess you could also multiple inherit if your language supports it, but then you still have a potential issue of bringing code into a class that won't use all of it. I think as far as C++ goes you will still be forced to inherit in certain cases, like using a framework which expects you to inherit from its classes, but I think it's a grand idea to stick to composition in one's own work. 2¢
@whiskey4609
@whiskey4609 7 жыл бұрын
programmers always leave the best comments, I actually read through the comments below and was not disappointed by trolling. I ACTUALLY learned something from other peoples experiences ahahah
@silvgravity4492
@silvgravity4492 4 жыл бұрын
awesome video! i feel like these 8 minutes made me a much better developer
@leojacquemin2037
@leojacquemin2037 8 жыл бұрын
Excellent video, you made me see the light
@mohammedlaslaa9549
@mohammedlaslaa9549 4 жыл бұрын
Just awesome video! Thanks!
@T-She-Go
@T-She-Go 3 жыл бұрын
"Its like you ask for a banana and you get the banana but a gorilla is holding it" 😂😂 I love this. Thank you so much🙌🏾
@souravkb
@souravkb 3 жыл бұрын
And the entire jungle with it!
@AngusMcIntyre
@AngusMcIntyre 7 жыл бұрын
With a statically typed language, inheritance is great for extension. I almost never use it for defining domain concepts, more for elegantly tapping into the language - a workaround :D
@tijilparmar1642
@tijilparmar1642 2 жыл бұрын
Love this video..clared the concept with humour...
Why Favor Object Composition Over Class Inheritance? A Deep Dive
19:00
Fun Fun Function Returns: Dawn of the Data Developer (and funfun.email)
24:37
Я нашел кто меня пранкует!
00:51
Аришнев
Рет қаралды 5 МЛН
🤔Какой Орган самый длинный ? #shorts
00:42
Clowns abuse children#Short #Officer Rabbit #angel
00:51
兔子警官
Рет қаралды 72 МЛН
WHO LAUGHS LAST LAUGHS BEST 😎 #comedy
00:18
HaHaWhat
Рет қаралды 23 МЛН
var, let and const - What, why and how - ES6 JavaScript Features
19:19
Fun Fun Function
Рет қаралды 180 М.
Factory Functions in JavaScript
6:34
Fun Fun Function
Рет қаралды 211 М.
The Flaws of Inheritance
10:01
CodeAesthetic
Рет қаралды 914 М.
Only Use Inheritance If You Want Both of These
9:10
Christopher Okhravi
Рет қаралды 14 М.
WHY IS THE HEAP SO SLOW?
17:53
Core Dumped
Рет қаралды 210 М.
Why Isn't Functional Programming the Norm? - Richard Feldman
46:09
OOP Principles: Composition vs Inheritance
15:38
Dave Crabbe
Рет қаралды 51 М.
Samsung laughing on iPhone #techbyakram
0:12
Tech by Akram
Рет қаралды 646 М.
Копия iPhone с WildBerries
1:00
Wylsacom
Рет қаралды 283 М.
Todos os modelos de smartphone
0:20
Spider Slack
Рет қаралды 57 МЛН