Strings: Properties, Methods & Template Literals in JavaScript | JavaScript Tutorial In Hindi #6

Поделиться
HTML-код
  • Опубликовано: 11 сен 2024
  • I have an updated version of JavaScript course going on. This Ultimate JavaScript course is being supplied with handwritten notes and I highly recommend the latest course over this.
    Must watch the updated course here: • JavaScript Tutorials f...
    ►JavaScript Tutorial For Beginners In Hindi Playlist - • JavaScript Tutorials I...
    ►Source Code + Other Material - codewithharry....
    This video is a part of my JavaScript In Hindi Course. JavaScript is a high-level, interpreted programming language that conforms to the ECMAScript specification. JavaScript has dynamic typing, prototype-based object-orientation, and first-class functions.
    Alongside HTML and CSS, JavaScript is one of the best and most demanded technologies of the World Wide Web. JavaScript enables interactive web pages and is a crucial part of web applications. The vast majority of sites use it, and major web browsers have a dedicated JavaScript engine in order to execute it.
    As a multi-paradigm language, it supports event-driven, functional, and imperative programming fashion. It has APIs for dealing with text, arrays, regular expressions, and the DOM, but the language itself does not include any I/O, such as networking, storage, or graphics facilities. It relies upon the host machine environment in which it is embedded to provide these features.
    ►Click here to subscribe - / @codewithharry
    Best Hindi Videos For Learning Programming:
    ►Learn Python In One Video - • Learn Python In Hindi ...
    ►Learn JavaScript in One Video - • JavaScript Tutorial
    ►Learn PHP In One Video - • Learn Php In One Video...
    ►Machine Learning Using Python - • Machine Learning Tutor...
    ►Creating & Hosting A Website (Tech Blog) Using Python - • [Hindi] Web Developmen...
    ►Advanced Python Tutorials - • Intermediate/Advanced ...
    ►Object Oriented Programming In Python - • Object Oriented Progra...
    ►Python Data Science and Big Data Tutorials - • Python Data Science an...
    Follow Me On Social Media
    ►Website (created using Flask) - www.codewithha...
    ►Facebook - / codewithharry
    ►Instagram - / codewithharry
    ►Personal Facebook A/c - / geekyharis
    Twitter - / haris_is_here

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

  • @CodeWithHarry
    @CodeWithHarry  2 года назад +1

    I have an updated version of JavaScript course going on. This Ultimate JavaScript course is being supplied with handwritten notes and I highly recommend the latest course over this.
    Must watch the updated course here: ruclips.net/p/PLu0W_9lII9ahR1blWXxgSlL4y9iQBnLpR

  • @humaali4636
    @humaali4636 3 года назад +123

    Better than certification courses... and that too for free. Thanx alot Harry sir🙃

    • @exploreanything20yearsago95
      @exploreanything20yearsago95 3 года назад +8

      First time i see a girl is interested in coding 😅

    • @CoralAbhi
      @CoralAbhi 3 года назад +1

      🔥

    • @kirtiiyer490
      @kirtiiyer490 3 года назад +1

      @@exploreanything20yearsago95 yes 😅

    • @muhammadbabar9836
      @muhammadbabar9836 3 года назад +5

      @Explore Anything• 20 years ago programming language is designed by a lady thats why its too complicated😅😜😜

    • @alexanderat4583
      @alexanderat4583 2 года назад +1

      Very true, thank you sir

  • @Tech_Aura
    @Tech_Aura 3 года назад +35

    concat
    length 5:17
    tolowercase 5:23
    touppercase 6:01
    indexof 7:42
    lastindexof 9:03
    charAt 9:22
    endswith 9:53
    includes 11

  • @mishu13
    @mishu13 2 года назад +13

    Way better than any paid courses... and that too for free. Thanks Harry !!!!!
    God Bless :)

  • @yashgandhi4675
    @yashgandhi4675 4 года назад +6

    let coder = 'Harry bhai'
    let message1 = `You are doing a great job to teach us and inspire us by doing these videos.`
    let message2 = 'We are so motivated by your videos and keep going.'
    let myhtml = ` Hello ${coder}
    ${message1}${message2}
    `;
    document.body.innerHTML = myhtml;

  • @vishant898
    @vishant898 4 года назад +37

    //Template
    let str1='JAVASCRIPT';
    let str2='JS TUTORIAL';
    let sem=` i learn ${str1} from CODE WITH HARRY ${str2} `
    document.body.innerHTML=sem;

    • @rabinarayanbasantia8
      @rabinarayanbasantia8 2 года назад

      Bro , Did it run ?

    • @soumendramohanty7613
      @soumendramohanty7613 2 года назад +2

      @@rabinarayanbasantia8 mera to nahi ho raha hai

    • @Abd501developer
      @Abd501developer 2 года назад

      @@soumendramohanty7613 i learn JAVASCRIPT from CODE WITH HARRY JS TUTORIAL dekh mera toh aagay

    • @educationiq5109
      @educationiq5109 2 года назад

      @@soumendramohanty7613 yaar bhai mere bhi RUN nahi ho rha hai ...

    • @Arsalanyt12
      @Arsalanyt12 2 года назад

      @@educationiq5109 Mera tu hogya

  • @krrishchaudhary1085
    @krrishchaudhary1085 3 года назад +79

    20:24
    question done sir....
    ans :
    let car1 = 'BMW';
    let car2 = 'Audi';
    let lanHtml = ` I like ${car1} but my favourite car is ${car2}`;
    document.body.innerHTML = lanHtml;
    Output === " I like BMW but my fvourite car is Audi
    Thanks sir great video!!!

    • @bhanu3045
      @bhanu3045 3 года назад +2

      you should use it in or

    • @nirajkumarpatel6173
      @nirajkumarpatel6173 3 года назад +2

      @@bhanu3045 yes @Krish Chaudhary we may use html also in template literels , all the HTML tags in ` `.

    • @bhanu3045
      @bhanu3045 3 года назад

      @@nirajkumarpatel6173 yea but we'll use only one tag, rather it's p tag or h tag. Right?

    • @nirajkumarpatel6173
      @nirajkumarpatel6173 3 года назад +2

      @@bhanu3045 no we can use any html tag in side the template literals and design our DOM (website).

    • @techkid358
      @techkid358 3 года назад

      @@nirajkumarpatel6173 can u explain me why lanhtml used here...
      What is the use of document.body.innerhtml here

  • @mailtodanish
    @mailtodanish 5 лет назад +38

    // String Template
    let para1 ="Good";
    let para2 = "Nice";
    let sentence = `${para1} Morning
    ${para2} to meet you!`
    console.log(sentence);
    // Good Morning
    // Nice to meet you!

  • @rupal2907
    @rupal2907 3 года назад +8

    Question's ans
    Let e1 = 'awesome'
    Let theHtml = ` this is my heading
    i am ${e1}`;
    document.body.innerHtml=theHtml;
    Thank you Harry sir for this awesome video

    • @satyamrajchaudhary272
      @satyamrajchaudhary272 2 года назад +1

      You haven't completed your .... tag.. so for curiosity I copied and tried to run on my vscode..
      And it's not working..
      I tried to figure out but I failed ..
      Plezz recheck your code and tell me what's wrong in it

    • @rupal2907
      @rupal2907 2 года назад

      @@satyamrajchaudhary272 i forgot to mention here typing mistake

    • @2Buddy784
      @2Buddy784 2 года назад

      Please reply me ye first time Sikh rha muje ye template literals smj nhi aa rha kya aap apni Instagram id send kr skte h please 🙏

  • @mohitanand6652
    @mohitanand6652 5 лет назад +29

    Awesome content ... please keep making videos .. Loving your javascript course

  • @adityatiwari1022
    @adityatiwari1022 4 года назад +9

    Bruh you have both the short-cut methods and the in-depth understanding I wonder how you got all that. Anyways hope you doing fine in this period. Respect +

  • @g3_mahesh_narayankar190
    @g3_mahesh_narayankar190 3 года назад +4

    Harry bhai just finished JavaScript Playlist, each topic very clearly explained . Awesome work bhai . Just a small request can you create playlist on Node.js .

  • @lingrajbiradar4416
    @lingrajbiradar4416 4 года назад +7

    //Template Literal
    let name = 'Virat';
    let record = 'Centuries';
    let record2 = 'runs';
    let stats = `${name} will break most ${record} and ${record2} records of sachin`;
    document.body.innerHTML = stats;

  • @pujay3478
    @pujay3478 2 года назад +2

    Your teaching method is so Unique, Clean and Clear Explanation with detailed knowledge... It help Us More in Learning Javascript. Thank you for making this Good Javascript Tutorial Series.

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

    u are very genious person apk tutorial ki vjh sai hum bhut kuch sikh paa rhe hai thanks alot sir

  • @gabbarsingh6562
    @gabbarsingh6562 2 года назад +4

    For Future Reference :
    Let harry = "This is tutorial six";
    harry.length
    harry.toLowerCase
    harry.toUpperCase
    harry.indexOf("ry")
    harry.lastIndexOf("r")
    harry.charAt(1)
    harry.endsWith("ry")
    harry.includes("arr")
    harry.substring(0,3)
    harry.slice(0,4)
    harry.split(" ")
    harry.replace("h", "m")
    15:55 - template literals

  • @sachinprajapati4463
    @sachinprajapati4463 2 года назад +1

    Thank-you 👍

  • @fauzantahir7765
    @fauzantahir7765 2 года назад

    harry bhai yaar maza aa gaya literally i went through dozens of js courses none of which suited my learning style but finally i found your course and it made my life alot easier thanks alot bhai : )

  • @bhushan731
    @bhushan731 3 года назад

    let code1= "javaScript tut";
    let code2= "code with harry";
    let ihtml= ` You are awesome teacher
    I Really Enjoy ${code1} with "${code2}" `;
    document.body.innerhtml =ihtml;
    console.log(ihtml);

  • @jasminshrestha6573
    @jasminshrestha6573 3 года назад +1

    You are great human, sir.

  • @rashmiambedkar5143
    @rashmiambedkar5143 4 года назад +46

    Who was your teacher? Curious to know how you received such in-depth knowledge.🤔

  • @moinbavan9941
    @moinbavan9941 2 года назад +5

    Better than certification courses, thank you so much Harry sir.

  • @HariomSingh-ei4fb
    @HariomSingh-ei4fb 2 года назад +1

    This video series is very very helpful Harry Bhai😎

  • @ronakmahidharia407
    @ronakmahidharia407 3 года назад

    let lan1 = `CSS`;
    let lan2 = `JS`;
    let name1 = `Everyone`;
    let author = `Harry Bhai`;
    let langs = `Hello ${name1},
    This is an example.
    I like ${lan1} but trying to get the knowledge of ${lan2}.
    Thank You ${author} for the playlist. `;
    document.body.innerHTML = langs;
    Output:
    Hello Everyone,
    This is an example.
    I like CSS but trying to get the knowledge of JS.
    Thank You Harry Bhai for the playlist.

  • @divyadutta5763
    @divyadutta5763 3 года назад +1

    @CodeWithHarry pls next ajax and jquery

  • @prasaddhokale3256
    @prasaddhokale3256 2 года назад +1

    Explanation is too easy to understand thankyou Harry Sir 🙌🏻

  • @YoYo-eg6rc
    @YoYo-eg6rc 4 года назад +1

    let name = `by code with harry `;
    let k = ` This is JavaScript ${ name.toUpperCase()}` ;
    console.log(k);

  • @suryanshkumar4062
    @suryanshkumar4062 2 года назад +3

    Use this for css for now -
    body{
    background: linear-gradient(95deg, purple, rgb(209, 34, 34));
    font-family: system-ui;
    font-size: 25px;
    }

  • @user-not-found-97
    @user-not-found-97 4 года назад +1

    I love this course i joined... And im new student.
    let feedBack1 = course;
    let feedBack2 = outstanding;
    let feedBack = ` Your ${feedBack1} is, ${feedBack2}...`;
    document.body.innerHTML = $feedBack;
    Your course is outstanding...

  • @prasadtandel7478
    @prasadtandel7478 3 года назад +8

    13:35 the substring does not accept negative value whereas slice accepts negative this is the main difference

    • @nimisharaj8501
      @nimisharaj8501 3 года назад

      what is the difference between substring and substr

    • @yograj4979
      @yograj4979 2 года назад +1

      @prasad tandel yes you are correct

    • @yograj4979
      @yograj4979 2 года назад

      @@nimisharaj8501 The difference between them is that substring() only accepts a positive values but substr() accepts both positive as well as negative values.

  • @furqana2497
    @furqana2497 4 года назад +1

    let name1 = 'Harry';
    let cd = 'Java Script';
    let myPro =
    ` Hello ${name1}, How are you?
    Thanks for the amazing ${cd} tutorials. Very Helpful `;
    document.body.innerHTML = myPro;
    console.log(myPro);

    • @2Buddy784
      @2Buddy784 2 года назад

      Please reply me ye first time Sikh rha muje ye template literals smj nhi aa rha kya aap apni Instagram id send kr skte h please 🙏

  • @satviktiwari702
    @satviktiwari702 2 года назад +1

    // template
    Let teacher = "harry";
    Let topic = "Javascript tutorial";
    Let topic2 = "Python";
    Let class = ` ${teacher } is the best teacher ${teacher } taught us many languages such as : ${topic } , ${topic2}`;
    Document.body.innerhtml = class;

  • @RiteshKumar-jm8en
    @RiteshKumar-jm8en 3 года назад +1

    Just to add-> html.substring accepts (startindex and length of character) Not (startindex and endindex-1)

  • @mythbeastaarush
    @mythbeastaarush 2 года назад

    ThankYou Sir I am A very Old Follower Of You And What Ever I Want to learn is available on your channel this just motivates me so much thankyou again for such awsome course for free

  • @alkachandel1237
    @alkachandel1237 2 года назад +1

    Let fact = ' thanku so much sir !! '
    Let mycode =` what a nice explanation sir ..${fact }` ;
    document.body.innerHTML = mycode;
    Output ---- what a nice explanation sir ..thanku so much sir !!

    • @2Buddy784
      @2Buddy784 2 года назад

      Please reply me ye first time Sikh rha muje ye template literals smj nhi aa rha kya aap apni Instagram id send kr skte h please 🙏

  • @pranjalsrivastava8340
    @pranjalsrivastava8340 2 года назад

    simply awesome better than any online paid course.

  • @tejaswinikapare591
    @tejaswinikapare591 3 года назад +1

    Very nice explanation harry bhai.....Awesome!!!
    This tutorial is very useful.

  • @MuskanYadav-rj3pn
    @MuskanYadav-rj3pn 4 года назад

    Let str1= "coder";
    Let str2= " js";
    Let myHtml =` hello ${str1}
    this is ha tutorials
    , thankyou $(str1) for teaching us $(str2)
    `;
    document.body.innerHtml= myHtml;

  • @saurabhpandey5606
    @saurabhpandey5606 4 года назад +4

    your ways are just awesome, BORN TO BE A MENTOR!!

  • @rameshchavda4117
    @rameshchavda4117 3 года назад

    sid by side screen learning is best concept herry ji

  • @nishanttomar3050
    @nishanttomar3050 4 года назад +4

    bhai jald bazzi mai galt bolgae at 13:36
    console.log( html.substring(-4)) //likhne se puri string return karega
    console.log(html.substring(1,8));// returns string from index 1 to index 8
    console.log(html.slice(1,8));// returns string from index 1 to index 8
    console.log(html.slice(-6));// return last 6 values of the string
    commenting this for others to not get confused.
    love u harry bhaai

  • @mdjahidulislam8138
    @mdjahidulislam8138 2 года назад

    Awesome course and better understanding. Thank you Harry Sir...
    From Bangladesh.

  • @najamulhuda3052
    @najamulhuda3052 2 года назад

    let fruit1 = 'Orange';
    let fruit2 = 'apple';
    let html = `this is heading
    you like ${fruit1} and ${fruit2}
    `;
    document.body.innerHTML = html;

  • @sawankumartak3549
    @sawankumartak3549 4 года назад

    let name = "sawan";
    let marks = 65;
    myhtml = `Hello ${name}
    You have secured ${marks} marks
    Congratulations
    `;

    document.body.innerHTML = myhtml;

  • @iamaniketkr
    @iamaniketkr 4 года назад +1

    Explanation is easy to understand !
    Thankyou so much Harry for JS Tutorial !

  • @RohanDasRD
    @RohanDasRD 5 лет назад +7

    It is getting more interesting ❤

  • @TechnicalAnkesh
    @TechnicalAnkesh 3 года назад +10

    Template Literal is same as f-strings in python only the difference is here we are using ``
    Ans)
    name = "Ankesh";
    code = `Hello ${name}`
    document.body.innerHTML = code;

  • @closertothecosmos3519
    @closertothecosmos3519 3 года назад

    const htmlText = `I am writing HTML in javascript, watch this!!!
    Hello, My Name is Kishan
    Writing html test inside javascript and this is a paragraph.`;
    document.body.innerHTML = htmlText;
    *THANK YOU HARRY BRO FOR THIS TUTORIAL*
    Love from Bangalore, India.

  • @manojgoyal6961
    @manojgoyal6961 4 года назад +1

    let name = ' happy ';
    let fruit1 = ' apple ';
    let fruit2 = ' banana ';
    let htmlcode = `Hello, ${name}
    Heloo falloas
    I love to eat${fruit1}and${fruit2}
    `;
    document.body.innerHTML = htmlcode;

  • @priyankashinde1424
    @priyankashinde1424 2 года назад +1

    Thanks!

  • @gauravdhasmana9067
    @gauravdhasmana9067 2 года назад

    awesome harry bhai . keep uploading

  • @neerajgoswami2897
    @neerajgoswami2897 4 года назад +1

    const name=('Good Morning')
    const dame=('Neeraj')
    let color = 'red\'s'
    let color1 = 'yellow'
    let myname =`HELLO ji ${dame}
    This is 'the' Heading
    you like ${color} and ${color1}`
    document.body.innerHTML = myname;

  • @programmingwithshobhit6792
    @programmingwithshobhit6792 3 года назад

    20:27
    let favSport = "cricket"
    let favSport2 = "Kabaddi"
    let myHtml = ` Sports
    your favSport is ${favSport} , ${favSport2}
    `;
    document.body.innerHTML = myHtml;
    quetion done

  • @usamaarifshah7499
    @usamaarifshah7499 4 года назад +3

    Please make a to guide us how to start freelancing

  • @darshansawant2877
    @darshansawant2877 2 года назад

    Thanks For Sharing!

  • @featuretechprojects
    @featuretechprojects 3 года назад +2

    Sir if I use to learn the code with live server, except google crome Microsoft edge is getting open . Please help in converting to google crome

  • @sushilprajapati2234
    @sushilprajapati2234 4 года назад +2

    Great explanation of string methods and template literals ...

  • @saritamahara3468
    @saritamahara3468 3 года назад

    you are the Best .

  • @smadarsh3635
    @smadarsh3635 2 года назад +1

    Thank you sir

  • @sumitchawla9362
    @sumitchawla9362 5 лет назад +6

    Harry Bhai Colleges bandh karva kai Rahengai Pakka Hai!..

  • @baksh9595
    @baksh9595 4 года назад +1

    Wao you are great teacher

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

    lenght concat indexof lastindexof charat lowercase uppercase substring slice includes split replace

  • @umermaqsood1568
    @umermaqsood1568 3 года назад

    let name = "Omer"
    let aim = "Goal is to finish JS at the end to march"
    let start = "React JS"
    let quizhtml = `hello I m ${name}
    this is js learning class
    ${aim} and to start ${start}`
    document.body.innerHTML = quizhtml;

  • @mdsohrab2295
    @mdsohrab2295 2 года назад

    let pencil1 = 'oxfiit';
    let pencil2 = 'natrajan';
    let rHTML = ` i like ${pencil1} and but my fav. is ${pencil2}`;
    document.body.innerHTML = rHTML;
    output
    i like oxfiit and but my fav. is natrajan
    courses - better than UDEMY, thanku harry sir

  • @SubhaMP-m5d
    @SubhaMP-m5d Год назад

    let car1 = 'bmw' ;
    let car2 = 'nano';
    let mycar= `Hello! ${name}
    this is a BMW car
    i hope you like ${car1}and ${car2}
    `;
    document.body.innerHTML = mycar;
    Thank you sir for this playlist. Lots of love

  • @i_am_shakaib
    @i_am_shakaib 5 лет назад +3

    Harry Bhi can you please share outline of this course with us so we know what we are going to study.

  • @clubgamers1280
    @clubgamers1280 2 года назад

    You are great sir

  • @GlitchyGlobe
    @GlitchyGlobe 2 года назад

    Thankyou Harry Sir!

  • @SukhmanSinghSandhu
    @SukhmanSinghSandhu 2 года назад

    let him = 'Harry Sir';
    let nature = 'awesome';
    let description = ` ${him} is ${nature}`;
    document.body.innerHTML = description;

  • @encylopedia1303
    @encylopedia1303 3 года назад +1

    Thank you so much sir

  • @jeetsikder5912
    @jeetsikder5912 2 года назад

    Thank you bro you change my life 💖

  • @tayyabjatoi8644
    @tayyabjatoi8644 3 года назад +1

    I have great admiration for you.

  • @mohsinhasan1153
    @mohsinhasan1153 4 года назад

    let str1 = "mohsin";
    let str2 = "hassan";
    let name = `my first name is ${str1} my last name is ${str2}`;
    document.body.innerHTML =name;

  • @dilawarfaiz6116
    @dilawarfaiz6116 2 года назад

    let x = " this is string"
    let new = `javascript`${x}
    This is the example of Templets method
    document.write(new)
    =>javascript this is string
    This is the example of Templets method

  • @innerfire1589
    @innerfire1589 3 года назад

    let head='welcome in coding world';
    let punch='AWSOME';
    let para='This most beautifull thing is mind and most precious thing is time, ';
    let html=`${head} ${para}if we connect both of them together the life will become ${punch}`;
    document.body.innerHTML=html;

  • @suryapratapsingh3515
    @suryapratapsingh3515 3 года назад

    Harry bhai javascript p video bnao with important notes

  • @ruchiray8557
    @ruchiray8557 3 года назад

    You are the best

  • @SauravSinghGarg-yb2vu
    @SauravSinghGarg-yb2vu 2 года назад

    Thankyou Harry Bhai

  • @premkaithwas4971
    @premkaithwas4971 2 года назад

    thank you harry bhai!

  • @wealth_wheel_
    @wealth_wheel_ 4 года назад +2

    Thank you so much ❤️ 🤗

  • @lateshbansal7801
    @lateshbansal7801 2 года назад

    let fruit1='gwava';
    let fruit2='orange';
    let itsHtml=`hello ${name1}
    its some h1 tag
    and its some fruits
    ${fruit1} and ${fruit2}
    `
    document.body.innerHTML=itsHtml;

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

    Thanks a lot Bhaiyaaa

  • @Uswanaz
    @Uswanaz 3 года назад

    Sir you are my faourite teacher i love you harry bhai

  • @natural_world_creation6982
    @natural_world_creation6982 2 года назад

    Very helpful.

  • @ashutoshtiwari3495
    @ashutoshtiwari3495 2 года назад

    Bindaass harry

  • @aniketsen5918
    @aniketsen5918 4 года назад +1

    Let name ='Aniket';
    Let greet='wishes';
    Let wish ='Happy Teacher's Day';
    Let myhtm='Good Morning Sir $(name) $(greet) a very $(wish)
    document.body.innerHtml=myhtm;

  • @sathyaprasad2389
    @sathyaprasad2389 2 года назад

    Thank you bhai 🙏

  • @krushna2010
    @krushna2010 3 года назад

    For some reason I had to put block {} around it to work.. I hadn't used myHtml anywhere before in document
    Here is what worked:
    {
    let name = "Krushna";
    let greeting ="Good evening";
    let myHtml = `Hello ${name} + ' ' + ${greeting}
    `;
    document.body.innerHtml=myHtml;
    }
    Output: Hello Krushna Good evening

  • @sarikaprajapati2493
    @sarikaprajapati2493 2 года назад

    20:24
    let devices1 = 'SmartPhone';
    let devices2 = 'PC/Laptop';
    let myDevice = `Hello Everyone!
    Name of two Devices are
    ${devices1} and ${devices2}`;
    document.body.innerHTML = myDevice;

    • @2Buddy784
      @2Buddy784 2 года назад

      Please reply me ye first time Sikh rha muje ye template literals smj nhi aa rha kya aap apni Instagram id send kr skte h please sister 🙏

  • @sparshgupta8078
    @sparshgupta8078 4 года назад

    sir plz video banana bnd mat kriega mere jaise self learner k liye aise video amazing h or sir advanced topics bhi cover krte rahiye atleast jitna apko knwoledge h utna hmlog ko bhi bataiye

  • @parulsura9316
    @parulsura9316 2 года назад

    6 complete
    thanks sir for helping us

  • @ankitjodhani689
    @ankitjodhani689 4 года назад

    let name = 'Harry';
    console.log(`{name} is GOOD Boy
    {naem} IS a Good Boy`)

  • @anoushkaghosh3449
    @anoushkaghosh3449 3 года назад

    const name="Anoushka";
    let greeting="Good Morning";
    let series1="Game of Thrones";
    let series2="Money Heist";
    let favSeries=` ${greeting} eveyone.
    My name is ${name}.
    My favourite series are ${series1} and ${series2}.`;
    document.body.innerHTML=favSeries;

  • @nelsonlakhani9160
    @nelsonlakhani9160 2 года назад

    sir you're awesome love from pakistan

  • @piyush5982
    @piyush5982 2 года назад

    console.log("STRINGS");
    const namee = "PIYU$H";
    const greeting = "GOOD MORNING ";
    const total = ` ${greeting}` + `${namee} `;
    console.log(total);
    document.body.innerHTML = total;

  • @factzandcode
    @factzandcode 2 года назад

    20:20
    f1='mango';
    f2='orange';
    myHtml=`This is based on ${f1}
    this is based on ${f2}`
    document.body.innerhtml=(myHtml)

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

    Thanx Harry

  • @adityapandey9700
    @adityapandey9700 4 года назад +1

    let sub1="Maths";
    let sub2="Science";
    let class=`This is my favorite subjects ${sub1} and ${sub2} `;
    document.body.innerHTML=class;

  • @samuelfernandes9606
    @samuelfernandes9606 3 года назад +1

    Harry I have a doubt
    CharAt and search is same

  • @thareshahuja
    @thareshahuja 3 года назад +1

    let car1 = 'buggati';
    let car2 = 'rolls royce';
    let car3 = 'lamborghini';
    let myHTML = `Luxurious cars are ${car1} and ${car2} and ${car3}`;
    document.body.innerHTML = myHTML;