A Simple Explanation of Recursion
15:21
Пікірлер
@aaqidmasoodi
@aaqidmasoodi 2 сағат бұрын
closed right away. (who tf uses light mode?)
@user-oh7to8xw3j
@user-oh7to8xw3j 5 сағат бұрын
Awesome tutorial! Thanks
@alenachuyankova
@alenachuyankova 16 сағат бұрын
You helped me a lot, thank you!
@aldotugasumb2366
@aldotugasumb2366 19 сағат бұрын
my savior, even though it's been 2 years, but this solved my problem
@samsonewuru2367
@samsonewuru2367 21 сағат бұрын
this was absolute
@MCMishaNoernir
@MCMishaNoernir Күн бұрын
how to make the text persist?
@MuizzRufai
@MuizzRufai Күн бұрын
What is your color theme
@sudip4930
@sudip4930 Күн бұрын
amazing tutorial
@afrateam6241
@afrateam6241 2 күн бұрын
grab grab, it's time to start a long time video series to develop a real life project to combine all of your talents
@yxsh10
@yxsh10 2 күн бұрын
WHY DONT I HAVE SELECT THIS STYLE OPTION :((((((((((((((
@famero_xo
@famero_xo 3 күн бұрын
Great lecture! 🎉❤❤
@famero_xo
@famero_xo 3 күн бұрын
Wow thank so much for this lecture. It helped! 🎉❤
@johnvincentjimar4157
@johnvincentjimar4157 5 күн бұрын
Explanation is good but why is your vscode on light mode😵
@alexdin1565
@alexdin1565 5 күн бұрын
please can you make video about downloading the video from canvas even chatgpt don't give me a solution
@icyauk107
@icyauk107 5 күн бұрын
Explained very simply. Thank you very much, you have saved my final exams. AJAX is a lot more simple when you explain it this way, with very barebone and easy examples.
@ziadabdullah8255
@ziadabdullah8255 5 күн бұрын
Short but informative. Thank you!
@leetcoder987
@leetcoder987 6 күн бұрын
too much talking just get to the point
@teoh996
@teoh996 6 күн бұрын
Hello dcode. When I use computer style to get img width for an image whose src is an online link it works right. But for the same exact image, when I download it and then I use the get computed style method on that same image who’s src now is local to my pc, I get 0px. Any ideas why that is happening?
@afrateam6241
@afrateam6241 6 күн бұрын
You are a web Guru , may you create a video series to develop a full function clicker game without any frameworks. An online idle game to be safe, secure , and scalable . Just like "not coin" , "tapswap" and "hamster kombat"
@douglascounts4634
@douglascounts4634 7 күн бұрын
Dom, I love your stuff and have watched you for years. You are my favorite "go to" person for learning. So I want to see your channel grow but you still don't use an intro, or a phrase that you use in every video, etc. These are branding necessities that help people recognize and remember your channel and what you have to offer. You should also plant the seed to "like and subscribe" earlier in the video, so as people watch your video, they have that to ponder upon instead of thinking of your "like and subscribe" message more as ending movie credits and exit language just before the next video is shown. I don't want to sound harsh, but some of the very best talent on KZfaq doesn't grow in viewership simply because they don't take branding into account. I wish great content was enough to grow a channel, but without branding, it sadly isn't as every channel is now competitive. People want the content, I love your content and think it is the best, but without branding, people simply will not remember you or how to find you on KZfaq. Even a subscriber can lose your channel among the other hundreds of channels they are subscribed to. You are such a big enough part of my life now that I don't want to see your channel disappear because you didn't do any branding. I think adding an intro, and integrating a short repeated phrase or jingle to every new video would grow your channel exponentially. Your work is greatly appreciated and your audience loves you man....
@McKinneyy
@McKinneyy 7 күн бұрын
hey! i know this is pretty old now but I'm trying to implement this, and i'm getting an error saying that confirm is not defined. I even get this error when i download your code from codepen and use it as it is there. It works fine in codepen but not in webstorm when I put it in there - is there something weird with webstorm that would cause this issue?
@lounes03b99
@lounes03b99 7 күн бұрын
Do u have some projects for React beginners?? How to master react??
@dcode-software
@dcode-software 7 күн бұрын
Not yet. My channel has been mainly focused on web development without frameworks/libraries but I'm considering uploading React & TypeScript videos this year.
@lounes03b99
@lounes03b99 7 күн бұрын
@@dcode-software ok, hope u success 🔥 🔥
@anamarie9585
@anamarie9585 7 күн бұрын
hello, i have project to apply loading spinner in my project but strictly using css, html and sass only no javascript ... please help me how because i see all the video is needed to use jS
@dcode-software
@dcode-software 7 күн бұрын
Hi Ana, thanks for becoming a member! I've got a handful of videos on CSS-only loading spinners and animations, just search "dcode CSS loading spinner" on KZfaq. I think this one might be something that you're after: kzfaq.info/get/bejne/Y66DbKx62rrDfaM.html
@anamarie9585
@anamarie9585 7 күн бұрын
@@dcode-software thank you
@isabelphillips451
@isabelphillips451 8 күн бұрын
This is awesome ... now I'm beginning to think you read my mind on what I plan to research on
@montebont
@montebont 9 күн бұрын
Nice one- Thanks for sharing. To be more precise these are static functions of Object. You get all of them for free for _every instance_ of Object. The syntax may seem weird but it is very useful. You might use this when you want to group common helper functions like rounding numbers. Just declare them as static functions. The example below might be helpful because _proper_ rounding in JS is not as easy as it seems 🙂 You'd typically use it as ML.round(1 / 3, 5) class ML { /** * * @param {float} number * @param {int} precision * @returns (number) rounded number */ static round(number, precision) { const power = 10 ** precision; let result = Math.round((number * power).toPrecision(15)) / power; return result; } static roundUp(number, precision) { const power = 10 ** precision; let result = Math.ceil((number * power).toPrecision(15)) / power; return result; } static roundDown(number, precision) { const power = 10 ** precision; let result = Math.floor((number * power).toPrecision(15)) / power; return result; } static RND2(number) { return this.round(number, 2); }
@sauravdas8390
@sauravdas8390 9 күн бұрын
Finally a tutor we don't deserve but we need...
@kubataiupov1245
@kubataiupov1245 10 күн бұрын
Nice and helpful video. Thank you man!
@MadSimple
@MadSimple 10 күн бұрын
Check out Illinois Mono
@Hunchomadereal
@Hunchomadereal 10 күн бұрын
Literally I barely follow up tutors but I had to even turn on my post notifications for this program I literally learnt this like I was been thought in class thanks and I appreciate sir
@PoojaSharma-hp7zd
@PoojaSharma-hp7zd 10 күн бұрын
Thanks a lot
@I_b_e_k_s
@I_b_e_k_s 11 күн бұрын
Thank youu
@umbertopolanco4159
@umbertopolanco4159 11 күн бұрын
I want to create the JSON file with code and keep adding arrays of columns as different users save data. How would you go about it? The data I'm collecting and passing to the array will come from form elements.
@afokerealityigho9003
@afokerealityigho9003 13 күн бұрын
Thanks it's was very concise
@khgrapics_by_rango
@khgrapics_by_rango 13 күн бұрын
Valuable ❤❤ tnx brod
@JordanICM
@JordanICM 13 күн бұрын
never knew about this grid templates trick. I was about to do something 10 times more complicated to calculate heights and stuff. This is a lifesaver, thx!
@softwareengineer141
@softwareengineer141 14 күн бұрын
Thank you 💖💖👌
@cindymora3860
@cindymora3860 14 күн бұрын
Thank you Working smooth
@gua5432
@gua5432 14 күн бұрын
Tutorial is incomplete - doesn't show how the success and error notifications are connected to the buttons.
@allhailalona
@allhailalona 14 күн бұрын
great vidoe! thank you very much!
@matheuspombeiro1675
@matheuspombeiro1675 15 күн бұрын
You helped me a lot. Thank you!
@leslievelvy
@leslievelvy 15 күн бұрын
thank you so much! it's so simple and easy to follow <3!
@abolfazlsoheily
@abolfazlsoheily 15 күн бұрын
This video is for 5 years ago but help me a lot so under rated keep it up man✌
@josiahclarke8328
@josiahclarke8328 16 күн бұрын
Tysm i learned alot more than ever Plz keep making these easily digestible vids for us They're helpful as hell🤟
@marhunter1698
@marhunter1698 16 күн бұрын
Спс
@clecabral
@clecabral 16 күн бұрын
Wow, very good and straight to the point. Thank you!
@ejierocks13
@ejierocks13 17 күн бұрын
Warning preventDefault(); = Disable all Inputs also.
@arjunbhatnagar5600
@arjunbhatnagar5600 18 күн бұрын
CFBR
@anamarie9585
@anamarie9585 18 күн бұрын
i wanna ask how to do loader using sass only? because my project strictly use css and sass only but all video sample in youtube all using java
@fola_azeez
@fola_azeez 19 күн бұрын
Amazing thanks
@Dreku22
@Dreku22 20 күн бұрын
exactly what I was looking for, good stuff