Switch | Lets Build a City Stats Tool | JavaScript Course | Logic First Tamil

Поділитися
Вставка
  • Опубліковано 6 вер 2024

КОМЕНТАРІ • 30

  • @subitham
    @subitham Рік тому +14

    After javascript eagerly waiting for React JS Sis...🙏🙏🙏

  • @mdsardar5936
    @mdsardar5936 5 місяців тому

    Tamil ah padikum pothu romba happy ah iruku Ms. Bharathi. Please continue your postings or presentation. Please plan and come up with more new videos. Hoping to see your new videos soon. Thank you for your time.

  • @subitham
    @subitham Рік тому +7

    Sis very vey thank you.🥰🤗🙏🙏. Na course ponalum unga kitta tha clearah html and css learn panikiten..taq so much..🥰🤗😍 ipo javascript learn panren..enaku center la staff edukratha vida unga teaching tha listen panitu iruken easy understanding ah iruku.. After javascript React eduka mudiuma sis.. enaku classla react onume purila...😔

    • @LogicFirstTamil
      @LogicFirstTamil  Рік тому +3

      I dont have plans for react. i will try

    • @subitham
      @subitham Рік тому +1

      @@LogicFirstTamilit's ok sis..thanks for your reply..

    • @mohamedanas4578
      @mohamedanas4578 Рік тому +1

      @@LogicFirstTamil sister same avaroda problem than enakum course onum purila unga video than purithu react konjam panunga

    • @ashrinnt1558
      @ashrinnt1558 Рік тому

      @@LogicFirstTamil react too upload please

    • @sakibhussainparveen621
      @sakibhussainparveen621 7 місяців тому

      Same situation I also doing online course but I can't understand anything but this channel was amazing to gain knowledge.

  • @shiranjeevisk9148
    @shiranjeevisk9148 Рік тому +2

    Please Cover Full Depth JavaScript Core Concepts. Include Http calls with CRUD Operations
    It will very usefull for Real time projects.

  • @ranjithkumar.9715
    @ranjithkumar.9715 Рік тому

    Super aa puriyuthu mam ipdiyae continue pannunga.

  • @NARENDRANGGCETJII
    @NARENDRANGGCETJII 6 місяців тому +1

    I want calculator without button project code and your video is easily understandable

  • @relaxing8599
    @relaxing8599 Рік тому +1

    I try to doing your exercise but I can't so could you please answer for your exercise

  • @RakeshKumar-en1uq
    @RakeshKumar-en1uq Рік тому

    Ma'am I eagerly waiting for videos of spring boot, microservice and Hibernate .....

  • @SathishkumarCEEE
    @SathishkumarCEEE Рік тому

    Very useful thanks sister 💙

  • @RakeshKumar-en1uq
    @RakeshKumar-en1uq Рік тому

    It's really useful for us

  • @bharathim3828
    @bharathim3828 Рік тому +1

    Mam konjam doubt iruku mam,, doubt kekanum na epdi ungala contact panna Instagram la irukingla

  • @tyrefactstamil1254
    @tyrefactstamil1254 Рік тому +1

    Mam first excercise la no and oparetor epdi split panni variable la store panrathu?
    Store panna undifined varuthu🤔

  • @priya-pi2cf
    @priya-pi2cf Рік тому

    Swing programs solithaga mam

  • @sesha7496
    @sesha7496 Рік тому

    Sister♥️ enaku next week interview iruku naa unga videos tha regulara follow pannren innum evlo part video irukunu solluga ?, athigama iruthuchu na naa vera videos refer pannipen athukutha

  • @ajaydeva8333
    @ajaydeva8333 3 місяці тому

    Need js react sis

  • @prasanthkumar9606
    @prasanthkumar9606 2 місяці тому

    mam switch case romba puriyila then exercise um therila like neenga teach panatukum ithukum romba related aa ila maybe solution video irundha upload mam

  • @SureshKumar-tv1qt
    @SureshKumar-tv1qt Рік тому

    You are teacher or developer

  • @princy1542
    @princy1542 Місяць тому

    const button = document.querySelector('button');
    button.addEventListener('click', eligible);
    function eligible() {
    console.log('clicked');
    const input = document.querySelector('input:checked');
    if (!input) {
    result.innerHTML = 'Please select a qualification.';
    return;
    }
    const qualification = input.value;
    // const result = document.getElementById('result');
    switch (qualification) {
    case 'Illeterate':
    result.innerHTML = 'Not an eligible person';
    break;
    case 'HighSchool':
    result.innerHTML = 'Eligible person';
    break;
    case 'UG':
    result.innerHTML = 'Eligible person';
    break;
    case 'PG':
    result.innerHTML = 'Not an eligible person';
    break;
    case 'Doctorate':
    result.innerHTML = 'Not an eligible person';
    break;
    default:
    result.innerHTML = 'Invalid qualification';
    }
    }