Javascript String Concatenation | Javascript Tutorial For Beginners | ES6 Tutorial

Поделиться
HTML-код
  • Опубликовано: 12 сен 2024
  • Check out my courses and become more creative!
    developedbyed.com
    Javascript String Concatenation | Javascript Tutorial For Beginners | Javascript ES6
    In this video series we are going to learn modern javascript from scratch. This video is recommended for anyone wanting to learn javascript the modern way with ES2015. No previous programming knowledge is required, so this video series will help you learn javascript as your first programming language.
    We will cover how to do string concatenation in javascript with the " + " operator, we will also fix issues on when to use single or double quotes in strings.
    Finally we will take a look at the ES6 way of doing concatenations in javascript using the ${} syntax.
    Things covered in this video:
    How to do simple string concatenations .
    Differences in using single quotes vs double quotes in strings.
    Concatenating strings with numbers.
    ES6 string concatenation .
    📔 Materials used in this video:
    VSCode: code.visualstu...
    🛴 Follow me on:
    Twitter: / deved94
    Github: github.com/Dev...

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

  • @developedbyed
    @developedbyed  5 лет назад +33

    Next part is up tomorrow morning! I will post 1 per day to not overwhelm your sub feed!
    PS: there is also the " ! " operator which is the opposite basically. if ( !18 ) basically every number that is not 18. Sorry I forgot about this one :)

    • @juanfeliperubiano215
      @juanfeliperubiano215 5 лет назад

      Hey Ed, I have a question: can I do a matematical operation in the con solé.log

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

      hmmm?????????????????
      reading this after 2 years

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

      @@cryptozone435 reading this after 2 years and 3 weeks

  • @chaiguyshow7804
    @chaiguyshow7804 5 лет назад +39

    const wishes = 'Thank you';
    const name= 'Dev Ed';
    console.log(wishes + name);
    output: Thank you Dev Ed

    • @breasthopper
      @breasthopper 5 лет назад +8

      jaya sankar Thank youDev Ed

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

      Thank youDev Ed

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

      yea...put a space at the end of "thank you" or at the start of "Dev Ed"

  • @eccomusic1386
    @eccomusic1386 2 года назад +6

    I am trying to learn JS . I really enjoy your enthusiasm . Keep doing what you're doing because it helps a lot of people . Thank you so much .

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

    'Awesome' + ' tutorial';

    • @noone-gr4is
      @noone-gr4is 4 года назад +5

      No, 'Awesome ' + 'tutorial!';

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

      @@noone-gr4is No 'Awesome ' + 'Tutorial';
      Where is the space bro?

    • @noone-gr4is
      @noone-gr4is 4 года назад +3

      @@arx2796 there is a space, look closely after aweaome

    • @limhx-6734
      @limhx-6734 3 года назад +1

      this reply section is funny lol

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

    Thanks for the amazing tutorials, and it really helps when there is a bit comedy in teaching as it makes learning fun. Other channels tutorials are pretty boring.

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

    Thank you :) You are awsome!!! love when you say Don't worry... not many kind people out there. Lots and lots of good wishes to you :)

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

    one of the best tutorials man!! love the way you explain.

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

    Much appreciated Ed

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

    Damn what a great series helps so much!

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

    Your way of explaining is profoundly amazing and you have a very sweet sense of humor.

  • @tima1301
    @tima1301 5 лет назад +2

    Thanks I am looking forward for your next video!

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

    that energy. I feel much more motivated to build my code

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

    Hello Ed :) Thank you so much for all this content. I appreciate what you do, and i find your Videos very Educational and Motivational. All the best to you! :)

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

    Thank you Dev Ed

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

    wow! great video Ed! i love to see the excitement all over your face when you explain stuff xD you are awesome ! keep up the good work. i do online school here in norway now and this video link is syllabus from noroff. that's gonna get you some views !

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

    damn good explanation! thank you! I am a beginner. subscribed

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

    Wow Ed...just watched my 1st tut and its great! Keep up the tremendous work mate!!

  • @alexvech
    @alexvech 5 лет назад +1

    thanks from the bottom of my heart

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

    const thanks = "Thank you"
    const name = "Dev Ed"
    function log(toLog) {
    console.log(toLog)
    }
    toLog(thanks + name)
    Output = Thank you Dev Ed

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

    u know that u r fuckng awesome right . explaining in different examples even the simplest things. Wow man Wow

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

    "The internet here is so bad that I just want to curl up in bed and cry"

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

      Ya lol, and "The sun is my best friend"

  • @sonnyb6536
    @sonnyb6536 5 лет назад +1

    You got yourself another subscriber!

  • @degamers4764
    @degamers4764 5 лет назад +1

    i love your content thank you very much

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

    Having learned the basics in Java, Python etc. before this I find it kind of weird to use const as often as you do. How does const in javascript differ from java/python where you would never ever make e.g. an age a constant variable? Thanks for great content.

  • @christianh.1160
    @christianh.1160 3 года назад +1

    Thanks for dooing this great tutorial. An important part is in 06:16 - 06:20 make sure you use the Backtick ´ . cheers Ch

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

      thanks bro

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

      Thank you @Christian H. ...you saved my day... without backtick it was acting like a string only was not taking variable in with double quote or single one....backtick is the key.

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

    I have learn c++ in High School , And my Teacher had said that you can learn any language easily if you learnt a language very properly. And now I can really find similarities with it

  • @musicsailor2861
    @musicsailor2861 5 лет назад +10

    Hello , May I ask why my ${name} doesn't work? It still show "${name} " on console page...I have double checked nothing typeing wrong . is it the reason that I am using Dreamweaver ?
    Thanks!

    • @thatguycheddar
      @thatguycheddar 5 лет назад +9

      make sure you use the backtick instead of quotations

  • @YanisAllad
    @YanisAllad 5 лет назад

    i love your tutorials sir !

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

    Man you are superb!!!!!!!

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

    You are great man...

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

    Cool cool, thanks

  • @JalalNatsheh
    @JalalNatsheh 5 лет назад +1

    the only person i disable ublock for :)

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

    This guy is awesome ❤

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

    You are the best thank you💙

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

    Can someone please let me know the initial sound track in this video? It sounds so good

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

    by the way the ${name} only possible with these `` quotes in es6 not with regular '' u should find them below of the esc keyword and it can also type with alt+96 Thankyou

  • @andreeasrh
    @andreeasrh 5 лет назад +1

    Hy Ed, i have a question for you. What theme do you use for Visual Studio Code app, to look like that ? Btw, thanks a lot for your video! 🔥
    Edit: I have saw the name of the theme in the comments. Thanks anw!

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

      Atom one dark maybe

  • @user-qo3nc6iw2n
    @user-qo3nc6iw2n 5 лет назад

    Thank you for your perspire.

  • @abdullah-946
    @abdullah-946 4 года назад

    Would this course on completion allow a learner to build small apps as it quite short compare to other online tutorial

  • @GlaucoLustosa1
    @GlaucoLustosa1 5 лет назад

    Amazing THAKS !!!

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

    Hey Dev Ed Can you please upload a video on that responsive nav bar again but with content as when I try to add images in the body the images overlap on the nav bar which slides out in mobile view. So please if you can please help. Thank you for your content :)

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

    Timing 7:17 in my editor why this is not working ? i am also write the same code .

  • @noone-gr4is
    @noone-gr4is 4 года назад

    Hey! Can you please tell me your VS Code Theme? I really like it!

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

    Great video! How to run the code in Terminal when Save ? +1 Subscriber !

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

      Here is the great part it does it automatically when you save

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

    Vanakam da mapla Tamilnadu la irudhu♥️

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

    Hello, Edwin. My name is Edwin :D

  • @andrewcmsmasters5345
    @andrewcmsmasters5345 5 лет назад

    what color theme you use?

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

    why making age a constant? age is something variable........

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

    who's sun ? JSON ?

  • @alessiopustorino85
    @alessiopustorino85 5 лет назад

    How can I do the backtick symbol with the keyboard?

    • @developedbyed
      @developedbyed  5 лет назад

      Button next to your 1, above the Tab

    • @alessiopustorino85
      @alessiopustorino85 5 лет назад

      @@developedbyed I have Italian keyboard. Need to change layout?

    • @developedbyed
      @developedbyed  5 лет назад +2

      Ugh I'm not sure.. you can copy paste this lol ``

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

    where is your home town?

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

    2:16 Me when my crush interacts with other boys

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

    Big brain time be watching this at 1.25 speed to lean all of JS in

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

    who are the nine people that disliked this video

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

    You make me laugh as I learn

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

    Now I realize the "ed" is in even in your name.

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

    $ doesnt work Why??? I understand why. I used ' ' instead of ``....(edited)

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

      Have you figured out the problem yet?

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

      @@tandinwangyel1897 I figured it out. I needed to use backtick instead of """ this one

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

      @@furkanbezci5202 Thanks.

    • @christianh.1160
      @christianh.1160 3 года назад

      well look at 06:16 you will see he is not using ' ' or " " he is using the Backtick ´ :-)

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

    1:40 Your a-Gee is 21

  • @MuhammadAbdullah-ge9rj
    @MuhammadAbdullah-ge9rj 3 года назад

    I Hate Programming

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

    This was trash.....