String in Javascript | Must know string functions | JavaScript Course | Logic First Tamil

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

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

  • @KarthikeyanS-f3l
    @KarthikeyanS-f3l 10 месяцев назад +5

    My favourite coding teacher since my college days. Now I am working as a full stack web developer. The basement is build by you akka, Thank you so much

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

      Brother js ku entha video mattum pothumaa now I am learning frontend developer so I am a non it so plz reply

  • @mathspulligal7460
    @mathspulligal7460 Год назад +15

    😍😍😍One Teacher , One Channel ,
    One Sister Can Be Change The Carrier🤩🤩🤩
    🤗🤗🤗🤗Thanks Akka For Your Carring Videos 🥰🥰🥰

  • @reshmabarvin511
    @reshmabarvin511 Год назад +12

    let name = "logicfirst"
    console.log(name[Math.floor(Math.random() * name.length)])

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

    Watched practised.... ❤️

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

    Sis I'm addicted ure teaching style avlo clear a puriuthu one more help enaku February month exam athukidaile C# program language video upload panni vitunga please its my kindly request

  • @gokulraj5859
    @gokulraj5859 Год назад +5

    function lettert(){
    name='abcd';
    let random = name.charAt(Math.round(Math.random()*name.length));
    console.log(random);
    }

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

    thanks mam very Use full video

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

    let name = 'Ironman'
    let letter = Math.floor(Math.random() * name.length);
    let randomLetter = name.charAt(letter);
    console.log(randomLetter)

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

    Thanks for uploading mam.. 🌸

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

    akka oru topic or method complete pannu bothu oru exercise kodhunga akka plz, practice panna easy ya irrukum

  • @Myaheeya
    @Myaheeya 21 час назад

    let otpWord = "Mohamed";
    let otplen = otpWord.length;
    let rnotp = (Math.floor(Math.random() * otplen));
    let otp = otpWord.charAt(rnotp);
    console.log(otp);

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

    Nandri Akka 💯🔥👍🏻

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

    name.charAt(Math.random()*name.length-1)

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

    let name = "LogicFirst"
    let random = (Math.floor(Math.random()*name.length))
    console.log(name.charAt(random))

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

    ✨️super akka

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

    Ennaku oru doubt JavaScript ellam function dhana....

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

    teach me how to model pop up in javascript?

  • @sathishkumar-zx6uy
    @sathishkumar-zx6uy Год назад +1

    Mam bootstrap solli thara mudiumaa

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

    let name= “Makesh”;
    console.log(name[Math.floor(Math.random() * 6)]);

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

    let name = "Bharathi"
    console.log(name[Math.abs(Math.round(Math.random()*name.length)-1)])

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

    let name = "shanmugam"
    let output = name[Math.round(Math.random()*name.length-1)]
    console.log(output);

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

    Let name="vicky"
    Console. log(name[Math. round(Math. random())])

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

    let x='welcome'
    x[Math.floor(Math.random()*(x.length))+1]

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

    Undefined nu varuthu

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

    Hi akka.... good evening...

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

    let name = "Success"
    let random =Math.floor(Math.random()*name.length)
    name.charAt(random)

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

    var naga="naga";
    var len=naga.length;
    console.log(naga[(Math.ceil(Math.random()*len))]);

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

    function generate(){
    const name = document.getElementById("name").value;
    var tmpName = "";
    for(var i = 0; i < name.length; i++){
    var tmpIdx = Math.floor(Math.random()*name.length)+1;
    tmpName += (tmpIdx < name.length && (!tmpName.includes(name.charAt(tmpIdx))))?name.charAt(tmpIdx):"";

    }
    document.getElementById("genresp").innerHTML = "Result :: " + tmpName;
    }