JavaScript Strings | Sigma Web Development Course - Tutorial #60

Поделиться
HTML-код
  • Опубликовано: 2 дек 2024

Комментарии • 522

  • @zinnjer
    @zinnjer Год назад +117

    ⭐⭐⭐⭐⭐
    This course is not only free, It is a free chance for many individuals who want to or who are trying to be the best Web-developer.
    I request everyone for once at least watch this playlist.
    ⭐⭐⭐⭐⭐

    • @akhileshthakurofficial
      @akhileshthakurofficial Год назад +2

      hey can you guide me how to actually get a job after completing this course I'm from the commerce background. What if they demand to have a IT degree and I don't have any certificates on this but have knowledge of web dev

    • @zinnjer
      @zinnjer Год назад +6

      ​@@akhileshthakurofficialBrother don't worry about the jobs.
      As far as I know, anyone can get any job easily if they have required skill. if you are doing good with code and you can be the best in web development, just go for it.
      Yes, Degree matters but once you are in a company no one is going to ask you about a degree, Everyone will just focus on your experience.
      So, for starting don't rush for a big company, start with a small company and gain the experience..now you are ready..boom🤜💥
      You can start freelancing And who knows,maybe you will be the boss of your own company one day..😊😊

    • @tbkprogrammer
      @tbkprogrammer Год назад +1

      Harry Bhai We know tthat views are decreasing day by day but we are with you never give up @CodeWithHarry

    • @akhileshthakurofficial
      @akhileshthakurofficial Год назад

      Thanks buddy for the help Wishing same for your future as well. Good luck!@@zinnjer

    • @computerscout331
      @computerscout331 11 месяцев назад

      ​@@zinnjergood

  • @muditthakur7732
    @muditthakur7732 Год назад +32

    Only 800 subscribers left to reach 5 million! Thank you for your teachings throughout the years, and congratulations, Sir Harry, on reaching this impressive milestone. We all recognize the tremendous effort you've put into your work, and it's evident that your hard work has yielded remarkable results. 😀😀#5million

  • @AadvikSwaraj
    @AadvikSwaraj Год назад +20

    5 Million subscribers soon sir congratulations harry bhai
    edit: 5 million completed congratulations harry bhai

  • @Avgstoryteller
    @Avgstoryteller 8 месяцев назад +4

    The energy Harry puts in every video is just insane

  • @LofiVibes_24-7
    @LofiVibes_24-7 Год назад +27

    Congratulations to coming 5million subscriber #harrybhaiop 🎉

  • @Hafijur0211
    @Hafijur0211 10 месяцев назад +3

    🎯 Key Takeaways for quick navigation:
    00:00 📚 *Basics of JavaScript Strings*
    - Understanding how to create strings in JavaScript using double quotes.
    - Exploring ways to access the third character of a string.
    - Demonstrating conversion of a string to uppercase and lowercase.
    00:43 🧐 *Overview of Strings and their Use*
    - Defining what strings are and their purpose in storing and manipulating text.
    - Highlighting the role of strings in creating document fragments and text manipulation.
    01:12 🛠 *Setting Up Workspace for String Operations*
    - Creating a new folder and workspace for video #60 in the Sigma Web Development Course.
    - Demonstrating the use of Visual Studio Code for coding and running scripts.
    - Emphasizing the importance of running code from the workspace for a better learning experience.
    02:36 🔄 *JavaScript Forgiving Language Design*
    - JavaScript is forgiving when it comes to errors, attempting to avoid throwing errors.
    - The language is designed to be forgiving to prevent excessive errors when executing code in browsers.
    - Examples of forgiving behavior when accessing elements beyond the array length.
    03:48 🚀 *Understanding Array Length and Template Literals*
    - Demonstrating how to determine the length of an array using the `length` property.
    - Introduction to JavaScript template literals syntax for string manipulation.
    - Utilizing template literals for creating dynamic strings with variable values.
    04:56 🐞 *Handling Scope Issues in JavaScript*
    - Explaining the occurrence of errors due to global and local variable conflicts.
    - Introducing the concept of scoping issues and their impact on code execution.
    - Resolving scope issues by choosing appropriate variable names and avoiding conflicts.
    05:11 🌐 *Introduction to Template Literals in JavaScript*
    - Overview of using template literals syntax for creating strings in JavaScript.
    - Demonstrating the convenience of inserting variables into strings using template literals.
    - Highlighting the role of template literals in improving the readability of code.
    06:18 🚀 *Advantages of Template Literals: String Interpolation*
    - Explaining the concept of string interpolation with template literals.
    - Showcase of using both single and double quotes inside a string with the backtick syntax.
    - Illustrating how template literals enhance the flexibility of string manipulation.
    07:15 🔍 *JavaScript Console for Testing Code*
    - Utilizing the browser's developer console for writing and testing JavaScript code.
    - Accessing the console through the inspect option, allowing real-time script manipulation.
    - Demonstrating the execution of JavaScript statements directly in the console for quick testing.
    07:29 📝 *Writing and Manipulating JavaScript in the Browser Console*
    - Introduction to using the browser console for writing and testing JavaScript code.
    - Demonstrating the process of writing variables and testing code directly in the console.
    - Highlighting the convenience of real-time script manipulation through the console.
    08:10 🎭 *Handling Single and Double Quotes in Strings*
    - Addressing challenges when mixing single and double quotes in a string.
    - Introducing the concept of escape sequence characters for convenient string handling.
    - Demonstrating the usage of backslash (`\`) as an escape character to include quotes within a string.
    09:04 🌐 *Transforming String Case with JavaScript Methods*
    - Illustrating the transformation of string case using JavaScript methods (`toUpperCase` and `toLowerCase`).
    - Showcasing how these methods can be applied to modify the case of entire strings.
    - Explaining the availability of various string manipulation functions in JavaScript.
    09:45 🔍 *Exploring String Methods: `length`, `toUpperCase`, `toLowerCase`*
    - Discussing the usage of string methods, including `length`, `toUpperCase`, and `toLowerCase`.
    - Demonstrating how to obtain the length of a string using the `length` property.
    - Illustrating the transformation of string case with `toUpperCase` and `toLowerCase` methods.
    10:28 ✂️ *Slicing Strings in JavaScript*
    - Explaining the concept of string slicing using the `slice` method.
    - Demonstrating how to extract a substring by specifying start and end indices.
    - Showing variations in slicing to include or exclude characters at specific indices.
    11:46 🔄 *Replacing Substrings in JavaScript*
    - Introducing the `replace` method for replacing substrings in a string.
    - Demonstrating the syntax for replacing specific substrings.
    - Highlighting considerations when replacing occurrences of the same substring.
    12:27 ➕ *Concatenating Strings in JavaScript*
    - Discussing string concatenation using the `+` operator and the `concat` method.
    - Illustrating how to concatenate multiple strings to create a new string.
    - Showing examples of concatenating strings with variables and literals.
    12:42 ➕ *Concatenating Multiple Strings in JavaScript*
    - Demonstrating the concatenation of multiple strings using the `+` operator.
    - Illustrating the process of concatenating strings with variables like "ए" and "ऐश्वर्या".
    - Highlighting the convenience of concatenation for building complex strings.
    13:24 🚀 *String Manipulation: Removing White Spaces*
    - Explaining how to remove white spaces from a string using a new string.
    - Demonstrating the syntax for removing white spaces with the `replace` function.
    - Emphasizing the convenience of using a new string for string manipulation.
    14:18 🔄 *Immutability of Strings in JavaScript*
    - Discussing the immutability of strings and how once created, they cannot be changed.
    - Introducing the concept of creating a new string for modifications.
    - Emphasizing the importance of understanding string mutability in JavaScript.
    14:57 🧭 *Exploring String Methods: Accessing Characters at Indices*
    - Showcasing various string methods for exploring characters, such as `charAt` and `charCodeAt`.
    - Demonstrating how to access characters at specific indices in a string.
    - Encouraging exploration of string methods for further understanding.
    15:26 🔍 *Understanding String Indexing in JavaScript*
    - Explaining the concept of string indexing and how to find the index of a character.
    - Demonstrating the use of the `indexOf` function to determine the index of a specific character.
    - Highlighting the return value of `-1` when the character is not found.
    16:07 🔄 *String Manipulation: Replacing Characters*
    - Discussing the process of replacing characters in a string using the `replace` function.
    - Demonstrating how to use the `replace` function to replace a specific character in a string.
    - Emphasizing practical examples of character replacement in CS coding.
    16:34 🛠️ *Understanding Logical Operators with String Functions*
    - Illustrating the use of logical operators like `&&` and `||` with string functions.
    - Explaining how to combine string functions and logical operators for specific conditions.
    - Highlighting the importance of understanding logical operators in string manipulation.
    17:03 🚀 *Practical Advice for Learning and Applying String Functions*
    - Providing advice on learning and applying string functions effectively.
    - Encouraging developers to practice and avoid memorization.
    - Emphasizing that practical experience leads to a better understanding of string functions and their applications.
    Made with HARPA AI

  • @mhmomin910
    @mhmomin910 Год назад +2

    Brother You're Mentioned in My Prayer Jazakallah May Allah Reward you with Lot of Happiness and Healthiness.

  • @saquibjamil8146
    @saquibjamil8146 Год назад +7

    Bhai bohot majedaar hai ye course and i thankyou to you for this course to be free and i can learn a lot of thing from this course.Love you harry bhai from allahabad

  • @AghaMehdi-m2m
    @AghaMehdi-m2m 10 месяцев назад +3

    By far one of the best web development course Top notch

  • @dhruv22535
    @dhruv22535 11 месяцев назад +4

    Best course on RUclips....... really love it❤

  • @RehanPathan-3221
    @RehanPathan-3221 Год назад +7

    This JavaScript Strings tutorial (#60) from the Sigma Web Development Course is incredibly informative and well-presented. The instructor does a great job of breaking down the intricacies of working with strings in JavaScript, offering clear explanations and practical examples. The tutorial covers fundamental concepts and dives into more advanced topics, making it suitable for both beginners and those looking to deepen their understanding.#SigmaBatchOp

  • @DeepikaDecodes
    @DeepikaDecodes Год назад +13

    You deserve 20 Million subscribers ❤

    • @DeveloperJishan
      @DeveloperJishan 3 месяца назад

      ii don't whink he deserve 20m
      He deserve 40m

  • @TCHEVO00
    @TCHEVO00 Год назад +7

    Congrats for 5 million

  • @SigmaCoder.
    @SigmaCoder. Год назад +8

    I am right now doing exercises 6 ...video 43
    The reason of behind that
    The Divali festival was coming and my 3rd year exam also running that's why my Sigma video are delayed...
    #SigmaBatchOP..🔥

    • @lyricalboy9281
      @lyricalboy9281 Год назад +1

      Bhai aapko DSA aata hai

    • @SigmaCoder.
      @SigmaCoder. Год назад +1

      @@lyricalboy9281
      Nahi mujhe DSA nahi aata..but
      After the completing this course I will learn DSA also

  • @Ashish...114
    @Ashish...114 Год назад +5

    'Edurator' (ad) ko pta nhi h ki "Sigma Web Development Express" nikal chuki h🤔 & we are on the way & now we are exploring JavaScript in its full depth and dimensions.!!!
    #SigmaBatchOp❤
    #JavaScriptOp😊
    #SigmaBatchOp

  • @Ahmed_Nagra
    @Ahmed_Nagra 8 месяцев назад

    Thanks Harry bro. You are helping people from all over the world. Love from Pakistan

  • @vikashalder2743
    @vikashalder2743 10 месяцев назад +3

    #SigmaBatchOP #JavaScriptOP
    great examples and explanations
    5 stars rating course : ⭐⭐⭐⭐⭐
    ThankYou Teacher for teaching ❤

    • @haziqali3635
      @haziqali3635 10 месяцев назад +1

      Ye emoji's kaisy lagaty ho?

    • @vikashalder2743
      @vikashalder2743 10 месяцев назад +1

      @@haziqali3635 comment saction mai emoji ka option hota h

    • @haziqali3635
      @haziqali3635 10 месяцев назад +1

      @@vikashalder2743 Tw ye Waly emoji's thori hoty..

    • @vikashalder2743
      @vikashalder2743 10 месяцев назад +1

      @@haziqali3635 bro i think aap phone se comment send kar rhe hoge waha ye emoji nhi show karenge aap ager computer ya laptop se comment karoge to ye wale emoji show ho jaye ga.

    • @haziqali3635
      @haziqali3635 10 месяцев назад

      @@vikashalder2743 ok bro thanks

  • @akashparmar7861
    @akashparmar7861 2 месяца назад +2

    harry sir is a great teacher

  • @UjjwalSharma.861
    @UjjwalSharma.861 Год назад +2

    Bhai Sigma batch ke pichle kai videos energy gayab si lag rhi thi, lekin ab lag rha Harry Bhai is back with the same energy #sigmabatchop ❤

  • @PCCOERCoder
    @PCCOERCoder 11 дней назад +1

    Lecture successfully completed on 21/11/2024 🔥🔥

  • @chetanupadhyay8409
    @chetanupadhyay8409 8 месяцев назад +1

    You deserve 200 millions subscriber's

  • @studykaro471
    @studykaro471 9 месяцев назад

    Course me bahot maja aa raha hai Harry bhai, thank you Bhai itni awesome playlist ke liye❤

  • @shabazuddin2854
    @shabazuddin2854 9 месяцев назад

    Best Web Development Course on RUclips🎉🎉🎉🎉🎉🎉🎊🎊

  • @codeswithbilal
    @codeswithbilal Год назад +1

    4.9 hmmm ain't coming slow man haaan :p congo for 5million bro. khush rho..the best mentor ever

  • @FurqanAli-7
    @FurqanAli-7 3 месяца назад +2

    STRING CONCLUSION WHAT I UNDERSTOOD:
    -Strings are collection of different characters written inside double quotes.
    -We have template literals .They are written inside ` and are used to insert inside string.
    -We have escape sequences to control output.
    -We have string methods such as upper case,lowercase,starts with,charat,slicing,concate,trim etc.
    AND STRINGS ARE IMMUTABLE.WE CANT CHANGE STRING
    -

  • @ikramafgar313
    @ikramafgar313 Год назад +2

    Congratulations Harry Bhai for 5 million subscribers in advance ❤

  • @movehard1851
    @movehard1851 9 дней назад +1

    ❤️🙏
    Sigma Batch OP
    ❤️🙏

  • @atifshaikh169
    @atifshaikh169 Год назад +1

    #SigmaBatchOp
    #JavaScriptBatchOp
    I WAS WAITING FOR NEXT VIDEO Maza Aa Raha Hai Sikhne Me ❤❤ThanK You

  • @ayush.tiwarios2105
    @ayush.tiwarios2105 4 месяца назад

    00:01 Creating and manipulating strings in JavaScript
    02:01 Accessing Characters in JavaScript Strings
    03:49 Using template literals in JavaScript makes string concatenation easier.
    05:48 Template literals in JavaScript make it easier to use variables and different types of quotes inside a string.
    07:40 Using double quotes in JavaScript strings and dealing with syntax errors
    09:24 JavaScript Strings - Converting case and using length property
    11:17 JavaScript Strings - manipulation and concatenation
    13:16 JavaScript strings can be manipulated using various methods and have immutability.
    15:17 JavaScript string functions can be used to perform various operations on strings.
    17:19 Become a lazy person with easy ways to enjoy life

  • @Subhash.Jadav19
    @Subhash.Jadav19 10 месяцев назад +1

    This SIGMA course is OP!!!

  • @Kingofbackbenchers
    @Kingofbackbenchers Год назад +7

    🌟🌟🌟🌟🌟
    you are a real sigma teacher

  • @ShaheenShaikh22028
    @ShaheenShaikh22028 2 месяца назад

    Awesome course
    Really Harry Bhai, you're the inspiration for all the students who wants to achieve something in life.

  • @mayankdev-qe8dd
    @mayankdev-qe8dd Год назад +2

    World Best Coding Teacher Harry Bhai 😎😎😎

  • @SyedSameer-bk9pe
    @SyedSameer-bk9pe Год назад +2

    Advance wishes harry bhai for the 5Million Subscibers | Code With Harry is not Just a Word It's an Emotion Love You Bhai 😍♥

  • @ailascommentatory9716
    @ailascommentatory9716 Год назад +1

    Harry bhai speaks my language 17:16

  • @TechFlowMinds
    @TechFlowMinds Год назад +2

    3:10 the way you say was very funny😂

  • @sumitthespeedskater
    @sumitthespeedskater Год назад +1

    Exams ke waje se series ko follow nahi kar pa raha ho
    But ll join soon 🎉❤ keep it going harry bhai

  • @FACTSMORE005
    @FACTSMORE005 Год назад +2

    Sigma Batch OP 🤩🤩🤩🤩🤩

  • @Its__AnkitSahu
    @Its__AnkitSahu Год назад +2

    Sigma Batch Super duper always OP

  • @555mayursahare3
    @555mayursahare3 Год назад +1

    Congratulations 🎉🎉🎉🎉 for 5 million

  • @sciencemania920
    @sciencemania920 6 месяцев назад

    Harry bhai! I ve no words to Say Thanks.Great Job.Great Bro.

  • @chetansingh575
    @chetansingh575 Год назад +1

    Congratulations Harry Bhai 5 Million soon

  • @NaseemAsghar
    @NaseemAsghar Год назад +1

    advance congratulations on 5 million subscriber

  • @mayankdev-qe8dd
    @mayankdev-qe8dd Год назад +1

    Finally 60 Videos Complete

  • @hamvlogwale
    @hamvlogwale 11 месяцев назад +1

    OP HARRY BHAI KEEP IT UP 🆙

  • @yyyyyyy852
    @yyyyyyy852 Год назад +2

    #SigmaBatchOP ⭐⭐⭐⭐⭐ This Course Deserve 5 stars No one can beat harry

  • @anjali61371
    @anjali61371 Год назад +1

    Congratulations 😍❤️for family of 5M❤🎉

  • @16_sokhal_4
    @16_sokhal_4 Год назад +7

    Harry sir please continue Netflix clone with the help of javascript also when javascript completed that you have done in sigma course 1st project..

  • @AfjalAnsari-su1yo
    @AfjalAnsari-su1yo Год назад +1

    Sigma batch oooooppppp
    Thanks harry bhai for this course

  • @TraptiGupta-s2s
    @TraptiGupta-s2s 14 дней назад

    yaahoo! 60 videos completed of this course # sigmabatchop #javascriptop

  • @NishantTaletiya
    @NishantTaletiya Год назад +1

    5m subscriber number 1 channel on youtube on this field

  • @manishkumar7426j
    @manishkumar7426j Год назад +2

    5 Million Soon 🔥 🔥

  • @rajatthakur8889
    @rajatthakur8889 11 месяцев назад +2

    Harry Bhai Please Discuss about the Hoisting In JavaScript Please

  • @ayushmaanraturi
    @ayushmaanraturi Месяц назад

    Tutorial - 60 Done ✅
    #SigmaBatchOP #HarryBhai
    Thank you ❤ Harry bhai for this amazing course

  • @vocabpower8707
    @vocabpower8707 11 месяцев назад +1

    thanks bhaiya your video content is spectacular.✨

  • @PritamOG
    @PritamOG Год назад +1

    Thankyou so much for this course ❤️❤️

  • @kidsemotions123
    @kidsemotions123 16 дней назад

    💥💥💥💥💥💥💥💥💥💥💥💥💥💥Harry bhai ,,,,,,,,, hum jaise garib ke liye itna sochne ke liye Thanks a lot 💕💕💕💕

  • @Dmdmsmsj
    @Dmdmsmsj Год назад +1

    Just thanks are advance congratulations ❤❤❤❤

  • @CodewithBilal745
    @CodewithBilal745 10 месяцев назад +2

    Amazing 😍

  • @xyranoxx
    @xyranoxx Год назад +1

    React , Next , Express , Three.js ko bhi iss course mein sikhana. PLZ!

  • @HuxaifaYT
    @HuxaifaYT Год назад +3

    @CodeWithHarry #solution
    let prob = Math.random() < 0.1;
    console.log("probility : " + prob)
    let a = prompt("enter a");
    let b = prompt("enter b");
    if(prob == true)
    {
    alert("multiplication : " + (a*b) + " addition : " + (a+b) + " subtraction : "+ (a-b) + " division : "+ (a/b));
    }
    else
    {
    alert("multiplication : " + (a+b) + " addition : " + (a*b) + " subtraction : "+ (a/b) + " division : "+ (a-b));
    }

  • @SwiftShorts634
    @SwiftShorts634 Год назад +1

    Harry Bhai maja ayaga please❤❤❤❤❤

  • @RDXGaming-ij3pn
    @RDXGaming-ij3pn 5 месяцев назад +1

    Sigma Batch Op ❤

  • @targetme5716
    @targetme5716 Год назад +1

    I am very excited ❤❤

  • @souravchatterjee5931
    @souravchatterjee5931 Год назад +1

    thanks for teaching as well as motivating.

  • @Blood_Walker.98
    @Blood_Walker.98 Год назад +1

    Bhaiya video mast hai!!!!! Par bhai total videos kitne banoge yeh course kitne videos ke bad khatam karoge! 100, 150, 200 ??????? Pls bata do bhai?

  • @InfoAnuj
    @InfoAnuj 11 месяцев назад +1

    sab badhiaaaa

  • @payalnarwal
    @payalnarwal 11 месяцев назад +1

    Thank you ❤

  • @Unstoppable.Sakshi
    @Unstoppable.Sakshi 11 месяцев назад +1

    Amazing Sir

  • @electronicshelp12
    @electronicshelp12 23 дня назад

    thanks harry bhai
    appreciate your efforts

  • @Dmdmsmsj
    @Dmdmsmsj Год назад +1

    U are the best ❤❤❤❤

  • @Sabach993
    @Sabach993 Год назад +2

    Hi Ji Sigma batch op ❤❤❤

  • @NirmalGamerFF-ho2pl
    @NirmalGamerFF-ho2pl Год назад +2

    ❤❤Sigma batch op❤❤

  • @Tanishk-d3l
    @Tanishk-d3l 4 месяца назад

    this course is superb

  • @lakshyavyas4634
    @lakshyavyas4634 Год назад +1

    Sigma Batch OP🔥

  • @Coding_contents
    @Coding_contents Год назад +2

    #SIGMA BATCH OP❤❤

  • @ptlunknown5054
    @ptlunknown5054 Год назад +1

    JavaScript is simpler to python and C language that's why I can understand this easily and I have learned that from this channel#SIGMABATCHOP And #HARRYBHAIKSAMANEKOIBOLSAKATAHAKYAAAAEEEEEEEEEHARRYBHAIIIII

  • @Engineering_Unlocked
    @Engineering_Unlocked Месяц назад

    thank uh so much bhaiya :)
    completed on 12/10/24

  • @IRFANALI-ss2lp
    @IRFANALI-ss2lp Год назад +1

    SIGMA BATCH OP 🎉🎉🎉

  • @ankushgautam4274
    @ankushgautam4274 4 месяца назад

    Sigma Batch OP!

  • @whitehat9182
    @whitehat9182 Год назад +2

    sir pls guide me to which playlist should i start watching learning javascript course from biginner to advance im little confused ..?

  • @arpitdhumane8197
    @arpitdhumane8197 2 месяца назад

    Thank you for this course

  • @LOSTGAMER141
    @LOSTGAMER141 Год назад

    @5:20
    template literal to python ki f string jesa hai @ codewithhharry
    #sigmabtachio

  • @RishitaTomar-ku8ob
    @RishitaTomar-ku8ob 6 месяцев назад

    Great sigmaopbatch😮

  • @sawairanadeem2320
    @sawairanadeem2320 5 месяцев назад

    lets role the intro #sigma batch op

  • @chirag71269
    @chirag71269 2 месяца назад

    Sigma batch OP ❤

  • @PratikOvhal
    @PratikOvhal Год назад +9

    Jaldi jaldi comment karta hu harry bhai like karenge

  • @Abcdxyzpqrs
    @Abcdxyzpqrs 9 месяцев назад +1

    Sigma batch op❤

  • @prinslakhani2574
    @prinslakhani2574 4 месяца назад

    sigma batch op always as ever

  • @Piyush_Sharma--
    @Piyush_Sharma-- Год назад +2

    Can You tell me Harry bhai I already completed your old web developement course (html and css) and also make one clone of a Animated website . and i started Your ultimate javascript course till string can i continue old web development course and now first completed ultimate javascript course I am confuse little bit Please suggest me and reply My question brother..... 😇😀@CodeWithHarry
    In my mind i will continue Your New course sigma..

  • @smhaviary5545
    @smhaviary5545 3 месяца назад

    Amazing course easy learning from start . #SigmaBatchOp❣

  • @rifatraffu2015
    @rifatraffu2015 Год назад

    #SigmBatchOp
    and Congrats For 5M Subscriber🥰🥰

  • @rangrezzaftab7560
    @rangrezzaftab7560 Год назад +1

    Thanks harry bhai

  • @harshbamnet8250
    @harshbamnet8250 9 месяцев назад

    Sigma batch op 🔥🔥😀

  • @samirmallick601
    @samirmallick601 5 месяцев назад

    13:00 Kaash kisi ko real life mein bhi add karna itna hi aasaan hota 🙃✌

  • @mixinformation5646
    @mixinformation5646 Год назад +2

    Harry bhai
    Jo modern websites me parallax effect use ho raha hai
    Us ke bare me kuch bta de
    #codewithharry

  • @KOMIT..KUMAR12
    @KOMIT..KUMAR12 Год назад +1

    Nice sessions❤❤

  • @Myworldusman
    @Myworldusman 7 месяцев назад

    Very good Harry sir

  • @Memoona820
    @Memoona820 2 месяца назад

    Thanks Harry Bhai

  • @Yamraj-se4hh
    @Yamraj-se4hh 11 месяцев назад

    Hello Harry Bhai..... in 24th line at 12:14 agrr aap---- console.log(b.replaceall("Sh", "77"));---- use karenge toh saare Sh ko 77 replace krr dega..... Thank You