Loops and String in JavaScript || JavaScript Series 2024

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

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

  • @extractionez
    @extractionez 8 หลายเดือนก่อน +20

    53:25 the difference between let name ="hello"; and let Name = new String("hello"); is that if we print the typeof() both the string then the first one will give output as string and the second one will give the output as object.
    example:-
    let str = new String('Hello') - Converts string to object
    let str = 'Hello' - Maintain type (string)

  • @subhadeepchatterjee1933
    @subhadeepchatterjee1933 8 หลายเดือนก่อน +29

    30:35
    We can write for loop without any conditions
    like for example :
    let i = 1;
    for(;;){
    console.log(i);
    }
    This will run without any error and give output infinite 1s
    But we can use for loop by adding conditions inside loop body
    let i = 1;
    for(;;){
    console.log(i);
    i++;
    if(i >= 10)
    break;
    }
    This will print 1 to 9

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

    30:46 Yes, we can use a for loop without giving it a starting point (initialization), a stopping rule (condition), or a step (updation). However, this kind of loop can run forever if you're not careful.
    Here's an example:
    for ( ; ; ) {
    console.log("This will run forever");
    }
    In this loop:
    There's no starting value.
    There's no rule for when the loop should stop, so it keeps going.
    There's no update to change anything each time it loops.
    To stop it from running forever, we can use a break statement to end the loop when we want:
    let count = 0;
    for ( ; ; ) {
    console.log(count);
    count++; // This increases the count each time
    if (count === 5) {
    break; // This stops the loop when count reaches 5
    }
    }
    This will print numbers from 0 to 4, then stop.

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

    We can write for loop without any conditions
    like for example :
    let i = 1;
    for(;;){
    console.log(i);
    }
    This will run without any error and give output infinite 1s
    But we can use for loop by adding conditions inside loop body
    let i = 1;
    for(;;){
    console.log(i);
    i++;
    if(i >= 10)
    break;
    }
    This will print 1 to 9

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

    30:46 haa bhaiya hum for loop ko bina un teen conditions (initialization,condition,updation) ke likh sakte hai. example:-
    let i=1;
    for( ; ; )
    {
    console.log(i);
    i++;
    if(i>10)
    break;
    }
    ye example hai 1to10 tk ki counting print karne ka without using those three confitions inside the loop body.

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

    The three components within the for loop are optional. We can omit any of the components as per our needs.
    Examples -
    Omitting Initialization:
    let i = 0;
    for (; i < 5; i++) {
    console.log(i);
    }
    Omitting Condition:
    for (let i = 0; ; i++) {
    console.log(i);
    if (i >= 4) break;
    }
    Omitting Updation:
    for (let i = 0; i < 5; ) {
    console.log(i);
    i++;
    }
    Samajh aa gya bhaiya. Loved the DSA C++ series as well.❤❤❤

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

    Very thankful for being like a brother for explaining all skills

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

    30:45 Bhaiya as I have studied the initializer, condition,updation are option as we can declare the variable out of the for loop too
    eg:-
    1) let i=0
    for(;I>=5;i++){
    console.log(hello)
    }// here variable is initialized before the for loop
    2)let i=0
    for(;I

  • @Justfollowyar
    @Justfollowyar 4 หลายเดือนก่อน +3

    bhai kasam se aaj tak kisi ne itni achi trah se loop ni samjaya.... love you bhai😘😘

  • @pratyushranjan6045
    @pratyushranjan6045 6 หลายเดือนก่อน +3

    smjh me aa rha hai mujhe sab kuch abhi tk mai while tk pahucha huu aab break ke baad padhunga thank u bhaiy aap bahut aache pahate hai love u from nitN; abhi mera typing spped thaa 40rpm;;

  • @ayush.tiwarios2105
    @ayush.tiwarios2105 5 หลายเดือนก่อน +4

    00:06 Fundamental concepts on loops and strings in JavaScript
    02:08 Using loops in JavaScript to avoid code duplication and maintainability issues.
    05:46 Introduction to different types of loops in JavaScript
    07:32 Understanding the syntax of for loops
    11:18 Understanding increment operations and condition checking in loops
    13:10 Understanding the for loop in JavaScript
    16:51 Exploring reverse counting in a for loop in JavaScript.
    18:31 Demonstration of loops and string manipulation in JavaScript
    21:52 Understanding 'break' statement in JavaScript loops
    23:52 Understanding loops and conditions in JavaScript
    27:27 Understanding loop iterations and conditions in JavaScript
    29:23 Understanding the dynamics and types of loops
    33:03 Explanation of the while loop in JavaScript
    34:49 Understanding loops and strings in JavaScript
    38:41 Understanding loops and strings in JavaScript is crucial for proper code execution.
    40:32 Understanding types of loops in JavaScript
    43:54 Understanding the logic of loops in JavaScript
    45:40 Understanding the do-while loop in JavaScript
    49:15 Understanding the concept of strings in JavaScript
    50:52 Introduction to different ways of creating strings in JavaScript
    54:51 Understanding string concatenation and backticks usage in JavaScript
    56:35 Accessing values inside backticks in JavaScript
    59:57 Understanding indexing and string manipulation in JavaScript
    1:01:42 Understanding substring method and split method in JavaScript
    1:05:39 Understanding the usage of backslashes in JavaScript strings
    1:07:23 Using backslash as a special character in JavaScript

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

    No, In JavaScript, you have the flexibility to omit any or all parts of the for loop as needed for your specific use case. Just keep in mind that clarity and readability are important.
    example :
    // With all three parts
    for (let i = 0; i < 5; i++) {
    console.log(i);
    }
    // Omitting initialization
    let j = 0;
    for (; j < 5; j++) {
    console.log(j);
    }
    // Omitting condition
    for (let k = 0; ; k++) {
    if (k >= 5) {
    break;
    }
    console.log(k);
    }
    // Omitting update
    for (let l = 0; l < 5;) {
    console.log(l);
    l++;
    }

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

    30:39 i ko initialize karna hi padega and condition bhi jaruri hai, but increment operator nahi lagane per yah execute to ho jayega lekin infinite loop ban jayega, isliye yah bhi jaruri ho jata hai as a good practice.

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

    bahut khub Babbar bhaiya maza aa gaya loops me; pura concept clear
    for loop without using any initialisation , condition or updation it is a infinite loop

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

    53:40
    In above statement the allocation is static whereas in last statement we are allocating memory in dynamic way using new keyword.

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

    53:20 jab hum string ka variable bnaty hain to wo stack main banta ha jo kay run time sy pehly storage assign hti ha matlab compile time pay.jab hum new keyword use kerty hain to memory heap main banti ha runtime pay aur dusri baat yay kay new string aik string class ka object bnata ha runtime pay jis sy hum us string class ki sari properties ko use ker sken gy

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

    understood everything! Thanks so much for making us understand everything so well..!

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

    01:30= Loops , 05:40= Types of Loops,

  • @kapilplays2127
    @kapilplays2127 3 หลายเดือนก่อน +1

    All Clear sir your way of teaching is too good

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

    Hum likh skte for loop without any conditions
    let i = 1;
    for(;;){
    console.log(i);
    }
    This will run without any error and give output infinite 1s
    But we can use for loop by adding conditions inside loop body
    let i = 1;
    for(;;){
    console.log(i);
    i++;
    if(i >= 10)
    break;
    }
    Output 1 to 9
    Answer of 30:35

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

    HW ANSWER
    yes we can use for loops without the any of three conditions but should be the semicolons that maintain the syntax of the for loop
    for(; ; ;){
    }

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

    zyada excited mat ho jawo kuch din bad fir sy long time no see ho jana ha 😂😂

    • @CodeHelp
      @CodeHelp  8 หลายเดือนก่อน +44

      Koshish poori hai aisa na ho

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

      Thoda sa kripa hamlogo par bhi kr dijiye apne superme batch ki tarah importance dekar to sayad aisa na ❤🙏

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

      ​@@CodeHelphamare purane love bhaiya koshish nhi kiya karte the, wo unka by default feature tha ki course complete karna ha toh karna ha pta nhi ye kon ha jo koshish kar rhe ha despite of all of these respect you man ho ske toh saath end tak nibhana god bless you❤

    • @CodeHelp
      @CodeHelp  8 หลายเดือนก่อน +19

      @@01_Priyanshu Course toh complete krunga hi bro, karna chahta hu mnn se.
      Beech me itna Gap hogya toh thora uncomfortable hu bss or kuch nhi.
      Jo kaha h vo definitely hoga

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

      ​@@CodeHelpmuze pata hai ki ye course jarur complete hoga aur consistency ke sath pura hoga don't worry subscribers

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

    Yes in for loop all three value is important like updation initialisation and starting condition. All three value carry importance in their field . If any value is missing the loop was not completed properly updation condition says value must be updated on every iteration .
    Initialisation says at which value we will take start at what value .
    Stopping condition says at which place or digit we run a loop .

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

    Check out 30:35
    We can write get output Without Initialization of i
    let i = 0;
    for (; i

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

    Thanks Bhaya. Pls series continuesly raky hr din aik video upload kry gap na dena pls. ap buhut achy samjaty hai buhut easy hota hai or concept fully clear rhta hai jo ap ny parhaya hota hai

  • @Piyußh-r2n
    @Piyußh-r2n 6 หลายเดือนก่อน +1

    what a nice class . Great content 💯

  • @hindu_rashtra1008
    @hindu_rashtra1008 5 หลายเดือนก่อน +1

    Best teacher on TH-cam ❤😊

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

    30:35
    ============================================
    without any conditions :
    let i = 7;
    for(;;){
    console.log(i);
    }
    This will run without any error and give output infinite 7s
    adding conditions inside loop body
    let i = 1;
    for(;;){
    console.log(i);
    i++;
    if(i >= 7)
    break;
    }
    This will print 1 to 6

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

    boht bdiaa pdaya bhaiya aapne number 1 explanation with full of practical experience thanks bhaiya❣❣ Bhagwaan apko hmesha khush rkhe or aap hmare liye aise he kaam krte rhe.. Dhanyawaad

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

    on of the best playlist for beginners

  • @SamruddhiMahajan-o7e
    @SamruddhiMahajan-o7e 7 หลายเดือนก่อน

    I love to learn with you sir. Hats off to your teaching..🤗😎

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

    Understood bhaiya🔥🔥

  • @AjayChavan-gf8ls
    @AjayChavan-gf8ls 5 วันที่ผ่านมา

    bhiaya sahi padhaya samaz me aaraha he ❤

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

    At 50:30,
    let firstName = "Rakesh"; is String primitive, this is Immutable, these are Stored in the Memory directly.
    where as
    let firstName = new String("Rakesh"); is String Object, this is Mutable, this not Efficient for Memory Management when compare to String Primitives.

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

    Understood perfectly 👌

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

    Samajh aa gaya bhaiya, dosto go for it is good infinity

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

    sahi padhaya bhaiya samajh main aa raha hai

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

    good job keep it up 26-10-2024 this lecture complete..

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

    30:39
    let a=1;
    for (;a

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

    Bht bht bariya ....

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

    Best Hogya Bhaiya G

  • @riya25.01
    @riya25.01 7 หลายเดือนก่อน

    best bhaiya . smaj me aagyaaa❤❤❤❤❤

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

    Wow nice one.!! WELL EXPLAINED 🤩🤩🤩🤩🤩🤩🤩🤩🤩🤩🤩🤩🤩🤩🤩🤩🤩🤩🤩🤩🤩

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

    bhiya bhot sahi prhaty ho ap❤❤❤

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

    great video sir please now continue the series

  • @Ramankumar-l3s
    @Ramankumar-l3s 18 วันที่ผ่านมา

    Awesome course🙂

  • @ShivaniSingh-nb9ox
    @ShivaniSingh-nb9ox 5 หลายเดือนก่อน

    The initialization statement in a for loop is used to initialize the loop counter variable, which is typically used to control the loop's execution. Without an initialization statement, the loop counter variable will not have a value, and the loop will not have any way to know how many times it should execute.

  • @SamruddhiMahajan-o7e
    @SamruddhiMahajan-o7e 7 หลายเดือนก่อน

    thank you for tutorials sir , they are very useful and easy to understand.

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

    50:30 last

  • @sameerhaque5419
    @sameerhaque5419 8 วันที่ผ่านมา

    Thank you bhaiyya samjh aaya

  • @dhruva3710
    @dhruva3710 26 วันที่ผ่านมา

    Understood ++
    Respect ++

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

    Understood++💯🔥

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

    understand ++, thank you Bhaiya..

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

    Mast ❤

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

    Bhaiya sab acche se samaj mai aa raha hai

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

    bhaiya sahi padhaya samjh aa rha hai

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

    Sir Samajh me aa gya 🙂🙂🙂🙂

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

    Great content delivery 🙏🙏

  • @DiscoveryDepot.
    @DiscoveryDepot. 28 วันที่ผ่านมา

    Thank you❤

  • @RajivKumar-zw8tq
    @RajivKumar-zw8tq 8 หลายเดือนก่อน

    Love Bhaiya.. video ke last me..., topic ke related..., kuch practice questions be add kr diya kro ..🌞

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

    Bhaiya I really love you in a good way ❤️

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

    Js playlist vi strt kr di bhaiya ne 🔥🔥

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

    Amazing sir

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

    Teaching skill you have excellent. Har din video dalo

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

    thanks bhaiya for your love and supports for the students🥳

  • @fit_tubes_365
    @fit_tubes_365 12 วันที่ผ่านมา

    Episode - 08 : 04-11-2024
    Episode - 09 : 14-11-2024
    Episode - 10 : 14-11-2024
    Episode - 11 : 19-11-2024
    Episode - 12 : 21-11-2024
    Episode - 13 : 21-11-2024
    Episode - 14 : 22-11-2024
    Episode - 15 : 23-11-2024
    Episode - 16 : 23-11-2024
    Episode - 17 : 23-11-2024
    Episode - 18 : 23-11-2024
    Episode - 19 : 25-11-2024
    Episode - 20 : 26-11-2024
    Episode - 21 : 27-11-2024
    Episode - 22 : 28-11-2024
    Episode - 23 : 29-11-2024
    Episode - 24 : 29-11-2024
    Episode - 25 : 29-11-2024
    Episode - 26 : 30-11-2024
    Episode - 27 : 02-12-2024
    Episode - 28 : 03-12-2024
    Episode - 29 : 03-12-2024
    Episode - 30 : 04-12-2024
    Episode - 31 : 05-12-2024
    Episode - 32 : 05-12-2024
    Episode - 33 : 06-12-2024
    Episode - 34 : 07-12-2024
    Episode - 35 : 08-12-2024
    Episode - 36 : 08-12-2024
    Episode - 37 : 08-12-2024
    Episode - 38 : 09-12-2024
    Episode - 39 : 09-12-2024
    Episode - 40 : 10-12-2024
    Episode - 41 : 11-12-2024
    Episode - 42 : 11-12-2024

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

    mja aa gya
    ✅ Done

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

    Thanks bhaiya smj aa gya 🎉

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

    let name = "love babbar"; creates a primitive string-simple, efficient, and directly stored in memory.
    let name = new String("babbar"); creates a String object, which is unnecessary overhead in most cases and leads to slower performance.

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

    Very helpful

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

    kya baat ha babbar bhai

  • @mansikhatri7841
    @mansikhatri7841 12 วันที่ผ่านมา

    Nice tutorial

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

    Thank You Bhaiya

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

    great learning bro

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

    Babbar bhaiya ek humble request please jaldi jaldi series complete kara dena, placement start hone wale hai or development k naam pe bs lecture 43 tak hi ata h

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

    Maza aa gya

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

    sahi padhaya hai samajh mai araha hai
    😁

  • @ParamShah-mf5ze
    @ParamShah-mf5ze 8 หลายเดือนก่อน

    In for-loop only condition is mandatory
    let i = 0;
    for (; i < 5;) {
    console.log(i);
    i++
    }

  • @sabahatSABAHAT-j4t
    @sabahatSABAHAT-j4t 8 หลายเดือนก่อน

    bhaiya thank u for coming

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

    let firstName = new String("love babbar");
    This creates a String object using the new String() constructor. Even though it looks like a string, it is not a primitive string, but rather a complex object.
    Since it's an object, it has properties and methods that primitive strings do not have.
    Example: typeof firstName will return "object".
    let firstName = "Love Babbar";
    This creates a primitive string. It's the most common and recommended way to declare strings in JavaScript.
    A primitive string is simpler and faster to use than a String object.
    Example: typeof firstName will return "string"
    In most cases, you should use primitive strings (let firstName = "Love Babbar";) because they are lightweight and more efficient than String objects (new String()). String objects are rarely needed unless you specifically require the object-based behavior (which is uncommon).

  • @humanbeing1913
    @humanbeing1913 11 วันที่ผ่านมา

    Thanks

  • @pareshrathod-z3i
    @pareshrathod-z3i 3 หลายเดือนก่อน

    thanks bhaiya

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

    understood bhaii jiii

  • @ShivaniSingh-nb9ox
    @ShivaniSingh-nb9ox 5 หลายเดือนก่อน

    The difference is that when we are{ let firstName="shiavni"; }(This is the normal creation of string ) but when we are create string in this form let name=newString("hello shivani"); in this way it create string in the form of object.

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

    Thank you so much sir

  • @B-NikhilRichhariya
    @B-NikhilRichhariya 8 หลายเดือนก่อน

    Congratulations bhaiya for 2 years anniversary!!!!!!!!!!

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

    Respect Button for LOVE BABBAR ❤❤❤❤❤❤

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

    Thanks a lot bhaiji 👍👏 bolne wale to bolte rahte h or kaam hi kya h unka

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

  • @AMITSHARMA-zt4ee
    @AMITSHARMA-zt4ee 8 หลายเดือนก่อน

    Thanks sir for uploading daily videos , please sir be consistent for your youtube army

  • @MuzamilHussain-cs9xo
    @MuzamilHussain-cs9xo 7 หลายเดือนก่อน

    in donu ma difference ya ha ka first wali strings ju han wo static memory ma store ho rahi han and jo 'new' liga ka create ki gaye ha wo heap ma ban rahi ha

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

    maza aa gya

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

    thanks for the video

  • @PanditJi-j8t
    @PanditJi-j8t 3 หลายเดือนก่อน

    Nice Bhaii

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

    I m waiting this video❤

  • @AbbasLineLahore
    @AbbasLineLahore 7 วันที่ผ่านมา

    han a gya samjh

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

    Samajh mai aa rha hai!
    Enhanced for loop se kar sakte hai!

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

    Good evening guru ji 🎉

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

    I is not mandatory to write specify all the 3 terms in for loop
    Here it is an example
    let k=0;
    for(;k

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

    samajh aaya bhaiya