Javascript Promises | Easier than you think

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

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

  • @AbdulIrfan-r2e
    @AbdulIrfan-r2e 2 หลายเดือนก่อน +1

    00:03 Understanding the basics of Promises in JavaScript
    00:31 Understanding JavaScript Promises made simple
    01:20 Understanding JavaScript Promises in Tamil
    01:45 Javascript promises simplify asynchronous coding
    02:29 Promises in JavaScript make data retrieval easier
    02:51 JavaScript Promises are easier than you think
    03:37 Javascript ப்ராமிஸ எப்படி ஆக்சஸ் பண்ணுவது?
    03:58 Javascript Promises simplify asynchronous code
    04:45 Promises முடிகின்ற போது கிடைக்கும் டேட்டா
    05:07 Creating a function
    05:53 Understanding asynchronous JavaScript
    06:12 Understanding Javascript Promises
    06:58 Handling asynchronous JavaScript using Promises
    07:19 Understanding JavaScript promises for easy coding
    08:05 Final step is the key in using JavaScript promises
    08:30 Understanding Promise in Javascript
    09:19 Understanding Javascript Promises
    09:47 Understanding asynchronous code execution in Javascript Promises
    10:36 Understanding Javascript Promises
    10:58 Understanding the concept of Promises in JavaScript
    11:44 Create and manage user details with Promises
    12:11 Understanding User Details and Login Process
    13:01 Write functions in JavaScript for asynchronous tasks easily using Promises.
    13:26 Understanding JavaScript Promises
    14:17 Promises ஒரு உறுதி மீற்றம்
    14:39 Promises in JavaScript simplifies asynchronous programming
    15:26 Implementing async layer in examples
    15:50 Understanding JavaScript promises in different contexts
    16:43 Understanding JavaScript Promises
    17:08 Easier understanding of Async Await concept

  • @NallusanTech
    @NallusanTech 7 หลายเดือนก่อน +9

    true 200% trainer, mentor nothing compared to you brother. The service you are offering to younger generation is going to be phenomenal. we are getting benefitted forever. God will bless you for enlighting new generation youngsters to understand the concepts. Infact teacher's are god. awesome.

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

      Thank you so much bro. Your words mean a lot 😊😊😊

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

    Anna thanks a lot...cause of this video i got selected. Love You😘

    • @JAFSCodeSchoolTamil
      @JAFSCodeSchoolTamil  6 หลายเดือนก่อน +2

      Wowwwww. Thank you so much. Your message made my day. All the best. 🙂🙂

  • @MadaraUchiha12321
    @MadaraUchiha12321 9 หลายเดือนก่อน +2

    Awesome explanation bro, thank you very much for this video and you earned my subscription ❤

  • @subashc1843
    @subashc1843 11 หลายเดือนก่อน +3

    thank you bro....

  • @selvakumarkumar1543
    @selvakumarkumar1543 11 หลายเดือนก่อน +2

    Happy pongal dude... Really appreciate your accountability

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

    Hey bro, lots of thanks. Mellapula concept sollama neenga detailed a solradhu chance ella. adhum namma language la.. "YARUM EPPADI SOLLITHARALA" even course join panna kuda eppadi oru explanation kedaikadhu... Please continue your greatest work. Will be helpful for people like us(freshers and also less experienced).

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

    very good explanation thank you

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

    Bro realy your explanation are very clear last two days ah promises ah pathi neraya video pathen but confused ah ve iruthuchi itha pathaaprotha theli a purithu thank you very much

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

      Thank you so much Gokul. Happy that it helped 😊😊😊😊😊🥰

  • @ahmedmuadh1789
    @ahmedmuadh1789 16 วันที่ผ่านมา

    Thanks it helps a lot ❤

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

    Good explanation and very useful !!

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

    Very useful video and good explain thank you ❤

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

    vere level anna Thanku so much anna

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

    Teaching ❤❤❤❤

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

    exact explanation bro

  • @074_cse_rohankarthikeyans6
    @074_cse_rohankarthikeyans6 5 หลายเดือนก่อน

    crazy good expln!

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

    great explain hats off 💯

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

    Nice explanation bro

  • @ilanchezhiyanr
    @ilanchezhiyanr 11 หลายเดือนก่อน +1

    Please kindly upload any project regarding Java step by step brother...thank you 😊

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

      I don't have expertise in Java bro. So for now I can't do bro.

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

    As always 👌👌👌

  • @MadaraUchiha12321
    @MadaraUchiha12321 9 หลายเดือนก่อน +4

    and my practice code is
    console.log("Before all promises");
    let pro1 = new Promise((resolved, rejected) => {
    let r = Math.random();
    if (r > 0.5) {
    setTimeout(() => {
    resolved(r);
    }, 500)
    } else {
    rejected(r)
    }
    });
    function p2f(t) {
    let pro2 = new Promise((resolved, rejected) => {
    if (t > 0.5) {
    setTimeout(() => {
    resolved(t)
    }, 500);
    } else {
    rejected("eathoo thappa irukku da")
    }
    });
    return pro2;
    }
    pro1.then((x) => {
    p2f(x).then((xx) => {
    console.log(xx + " is greater than 0.5");
    })
    }).catch((y) => {
    console.log(y + " is less than 0.5");
    }).finally(() => {
    console.log("Summa finally");
    });
    console.log("After all promises");

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

    Thank you

  • @DhineshSaravanan-pz2pb
    @DhineshSaravanan-pz2pb 11 หลายเดือนก่อน

    super bro romba thanks bro

  • @jayachitraannamalai1894
    @jayachitraannamalai1894 24 วันที่ผ่านมา

    React js video podunga ji

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

    nice explanation bro ....❤ Date time pathi video podunga bro 🙂🙂

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

    thank you sir . happy pongal
    😍

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

    nice video anna

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

      Thank you so much 😊

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

      @@JAFSCodeSchoolTamil make some small discord discussion with subscribers

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

      I am not getting much time bro that's why. For now i am trying to reply to all question i get but soon will plan this.
      @@sribalancodes

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

    thank u , but still have to go through this video a 2 more times.........to have professional understanding.

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

    thala promise or aysc await which one is best for asynchronus for new person to this concept

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

      Async await is less confusing bro compare to promises

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

    Thank you so much bro . Can you please upload React JS videos like this. It would be more helpful bro.

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

    simple way explanation really good bro

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

    Pls kindly advice me what are the topics should I cover in javascript... Lots of topics are covered on TH-cam by many TH-camrs, so it's makes me confusing which is right choice.. Pls advice me...

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

      Follow my playlist. I have some more topics remaining but you will have a good flow because i have tought from the basics.
      th-cam.com/video/vvfi0NC2yjw/w-d-xo.html

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

    Hi, Sorry to ask you personally are you from Cumbum?

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

      No. But I did my schooling in cumbum.

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

      @@JAFSCodeSchoolTamil Good to know! I did my schooling in Cumbum as well and got to know from my friend we both went to same school. You’re doing a great job. Keep it going 😊

  • @BalaBala-bm4uz
    @BalaBala-bm4uz 28 วันที่ผ่านมา

    bro could u please explain this code...
    function calculate(a, b, callback) {
    const result = a + b; // Or a * b for product
    callback(result); // Pass the result to the callback
    }
    calculate(3, 4, (result) => console.log(`Sum: ${result}`)); // Output: Sum: 7
    calculate(3, 4, (result) => console.log(`Product: ${result}`)); // Output: Product: 12

    • @JAFSCodeSchoolTamil
      @JAFSCodeSchoolTamil  20 วันที่ผ่านมา

      Will post a short video for this soon bro. Sorry for the delay.

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

    Beginners only come and watch your video so teach us slowly ok your way of teaching is very fast beginning definitely can't understand

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

    Promise wont handle any async operation, it's just a solution for callback hell.