JavaScript Strings | Sigma Web Development Course - Tutorial #60

แชร์
ฝัง
  • เผยแพร่เมื่อ 3 ม.ค. 2025

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

  • @zinnjer
    @zinnjer ปีที่แล้ว +125

    ⭐⭐⭐⭐⭐
    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 ปีที่แล้ว

      ​@@zinnjergood

  • @muditthakur7732
    @muditthakur7732 ปีที่แล้ว +33

    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

  • @LofiVibes_24-7
    @LofiVibes_24-7 ปีที่แล้ว +27

    Congratulations to coming 5million subscriber #harrybhaiop 🎉

  • @AadvikSwaraj
    @AadvikSwaraj ปีที่แล้ว +19

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

  • @Hafijur0211
    @Hafijur0211 11 หลายเดือนก่อน +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

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

    The energy Harry puts in every video is just insane

  • @vikashalder2743
    @vikashalder2743 11 หลายเดือนก่อน +4

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

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

      Ye emoji's kaisy lagaty ho?

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

      @@haziqali3635 comment saction mai emoji ka option hota h

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

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

    • @vikashalder2743
      @vikashalder2743 11 หลายเดือนก่อน +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 11 หลายเดือนก่อน

      @@vikashalder2743 ok bro thanks

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

    By far one of the best web development course Top notch

  • @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

  • @dhruv22535
    @dhruv22535 ปีที่แล้ว +4

    Best course on TH-cam....... really love it❤

  • @mhmomin910
    @mhmomin910 ปีที่แล้ว +2

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

  • @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

  • @chetanupadhyay8409
    @chetanupadhyay8409 9 หลายเดือนก่อน +1

    You deserve 200 millions subscriber's

  • @TCHEVO00
    @TCHEVO00 ปีที่แล้ว +7

    Congrats for 5 million

  • @DeepikaDecodes
    @DeepikaDecodes ปีที่แล้ว +13

    You deserve 20 Million subscribers ❤

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

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

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

    harry sir is a great teacher

  • @SigmaCoder.
    @SigmaCoder. ปีที่แล้ว +9

    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

  • @FACTSMORE005
    @FACTSMORE005 ปีที่แล้ว +2

    Sigma Batch OP 🤩🤩🤩🤩🤩

  • @ailascommentatory9716
    @ailascommentatory9716 ปีที่แล้ว +1

    Harry bhai speaks my language 17:16

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

    This SIGMA course is OP!!!

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

    Watching in Dec 2024
    Great Source of knowledge

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

    Best Web Development Course on TH-cam🎉🎉🎉🎉🎉🎉🎊🎊

  • @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

  • @Kingofbackbenchers
    @Kingofbackbenchers ปีที่แล้ว +7

    🌟🌟🌟🌟🌟
    you are a real sigma teacher

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

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

  • @555mayursahare3
    @555mayursahare3 ปีที่แล้ว +1

    Congratulations 🎉🎉🎉🎉 for 5 million

  • @Its__AnkitSahu
    @Its__AnkitSahu ปีที่แล้ว +2

    Sigma Batch Super duper always OP

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

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

  • @CodingP22
    @CodingP22 4 หลายเดือนก่อน +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
    -

  • @mayankdev-qe8dd
    @mayankdev-qe8dd ปีที่แล้ว +2

    World Best Coding Teacher Harry Bhai 😎😎😎

  • @NishantTaletiya
    @NishantTaletiya ปีที่แล้ว +1

    5m subscriber number 1 channel on youtube on this field

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

    ❤️🙏
    Sigma Batch OP
    ❤️🙏

  • @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 ❤

  • @mayankdev-qe8dd
    @mayankdev-qe8dd ปีที่แล้ว +1

    Finally 60 Videos Complete

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

    Lecture successfully completed on 21/11/2024 🔥🔥

  • @hamvlogwale
    @hamvlogwale ปีที่แล้ว +1

    OP HARRY BHAI KEEP IT UP 🆙

  • @NaseemAsghar
    @NaseemAsghar ปีที่แล้ว +1

    advance congratulations on 5 million subscriber

  • @chetansingh575
    @chetansingh575 ปีที่แล้ว +1

    Congratulations Harry Bhai 5 Million soon

  • @TechFlowMinds
    @TechFlowMinds ปีที่แล้ว +2

    3:10 the way you say was very funny😂

  • @atifshaikh169
    @atifshaikh169 ปีที่แล้ว +1

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

  • @manishkumar7426j
    @manishkumar7426j ปีที่แล้ว +2

    5 Million Soon 🔥 🔥

  • @ikramafgar313
    @ikramafgar313 ปีที่แล้ว +2

    Congratulations Harry Bhai for 5 million subscribers in advance ❤

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

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

  • @codeswithbilal
    @codeswithbilal ปีที่แล้ว +1

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

  • @AfjalAnsari-su1yo
    @AfjalAnsari-su1yo ปีที่แล้ว +1

    Sigma batch oooooppppp
    Thanks harry bhai for this course

  • @HemlataJogi-b9l
    @HemlataJogi-b9l 18 วันที่ผ่านมา

    thanks Harry sir for this course and your dedication 😊😊

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

    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

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

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

  • @yyyyyyy852
    @yyyyyyy852 ปีที่แล้ว +2

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

  • @a.omukatyofficial2639
    @a.omukatyofficial2639 22 วันที่ผ่านมา

    best course for begginers❤❤❤❤

  • @sumitthespeedskater
    @sumitthespeedskater ปีที่แล้ว +1

    Exams ke waje se series ko follow nahi kar pa raha ho
    But ll join soon 🎉❤ keep it going 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 😍♥

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

    #SigmaBatchOP Harry bhai.. Bohat maza aariya he, Dil garden garden ho riya is course me ❤❤😅

  • @Unstoppable.Sakshi
    @Unstoppable.Sakshi ปีที่แล้ว +1

    Amazing Sir

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

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

  • @anjali61371
    @anjali61371 ปีที่แล้ว +1

    Congratulations 😍❤️for family of 5M❤🎉

  • @ShubhamGupta-69
    @ShubhamGupta-69 4 วันที่ผ่านมา

    Sigma Batch OP 🔥🔥

  • @Dmdmsmsj
    @Dmdmsmsj ปีที่แล้ว +1

    Just thanks are advance congratulations ❤❤❤❤

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

    Amazing 😍

  • @HashmiIllahi
    @HashmiIllahi 13 วันที่ผ่านมา

    sigma batch op harry bhai ,Stay blessed !.Love from Pakistan

  • @targetme5716
    @targetme5716 ปีที่แล้ว +1

    I am very excited ❤❤

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

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

  • @PritamOG
    @PritamOG ปีที่แล้ว +1

    Thankyou so much for this course ❤️❤️

  • @Dmdmsmsj
    @Dmdmsmsj ปีที่แล้ว +1

    U are the best ❤❤❤❤

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

    Sigma Batch Op ❤

  • @vocabpower8707
    @vocabpower8707 ปีที่แล้ว +1

    thanks bhaiya your video content is spectacular.✨

  • @TraptiGupta-s2s
    @TraptiGupta-s2s หลายเดือนก่อน

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

  • @Tanishk-d3l
    @Tanishk-d3l 5 หลายเดือนก่อน

    this course is superb

  • @InfoAnuj
    @InfoAnuj ปีที่แล้ว +1

    sab badhiaaaa

  • @rajatthakur8889
    @rajatthakur8889 ปีที่แล้ว +2

    Harry Bhai Please Discuss about the Hoisting In JavaScript Please

  • @Sabach993
    @Sabach993 ปีที่แล้ว +2

    Hi Ji Sigma batch op ❤❤❤

  • @SwiftShorts634
    @SwiftShorts634 ปีที่แล้ว +1

    Harry Bhai maja ayaga please❤❤❤❤❤

  • @NirmalGamerFF-ho2pl
    @NirmalGamerFF-ho2pl ปีที่แล้ว +2

    ❤❤Sigma batch op❤❤

  • @lakshyavyas4634
    @lakshyavyas4634 ปีที่แล้ว +1

    Sigma Batch OP🔥

  • @PratikOvhal
    @PratikOvhal ปีที่แล้ว +9

    Jaldi jaldi comment karta hu harry bhai like karenge

  • @payalnarwal
    @payalnarwal ปีที่แล้ว +1

    Thank you ❤

  • @Coding_contents
    @Coding_contents ปีที่แล้ว +2

    #SIGMA BATCH OP❤❤

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

    thanks harry bhai
    appreciate your efforts

  • @souravchatterjee5931
    @souravchatterjee5931 ปีที่แล้ว +1

    thanks for teaching as well as motivating.

  • @IRFANALI-ss2lp
    @IRFANALI-ss2lp ปีที่แล้ว +1

    SIGMA BATCH OP 🎉🎉🎉

  • @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..

  • @xyranoxx
    @xyranoxx ปีที่แล้ว +1

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

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

    Sigma Batch OP!

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

    Sigma batch op 🔥🔥😀

  • @RishitaTomar-ku8ob
    @RishitaTomar-ku8ob 8 หลายเดือนก่อน

    Great sigmaopbatch😮

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

    lets role the intro #sigma batch op

  • @Abcdxyzpqrs
    @Abcdxyzpqrs 10 หลายเดือนก่อน +1

    Sigma batch op❤

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

    Sigma batch OP ❤

  • @rangrezzaftab7560
    @rangrezzaftab7560 ปีที่แล้ว +1

    Thanks harry bhai

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

    sigma batch op always as ever

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

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

  • @KOMIT..KUMAR12
    @KOMIT..KUMAR12 ปีที่แล้ว +1

    Nice sessions❤❤

  • @Shorts-iv2zk
    @Shorts-iv2zk 6 หลายเดือนก่อน

    ⭐⭐⭐⭐⭐
    i got internship while learning through this playlist

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

    Amazing course easy learning from start . #SigmaBatchOp❣

  • @affiliatelucrativesyndrome2932
    @affiliatelucrativesyndrome2932 ปีที่แล้ว

    Sigma OP Boss... Great Great!!!!!!!!!!!!!

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

    Thank you for this course

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

    we are going to raise the bar

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

    Very good Harry sir

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

    Wo sab to thik hai last mai music mast dala hai 😊😅

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

    love from Albakistan