#interview

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

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

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

    very clear and easy interview for such a good exp.

  • @jagatbandhu2601
    @jagatbandhu2601 10 месяцев назад +1

    const data = [
    {"name":"Jagat","age":30},
    {"name":"Suresh","age":43},
    {"name":"Dinesh","age":24},
    {"name":"Ramesh","age":35},
    ]
    function searchName(name){
    const index = data.findIndex(a=>a.name == name);
    if(index == -1){
    console.log("Name not found");
    }else{
    console.log("Age is ", data[index].age);
    }
    }
    searchName("Ramesh");

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

    .filter itself return array.
    you have to iterate ... such as
    filteredItems[0].count
    like this

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

    const mockFilterData = [
    {
    user: "a",
    address:"hyd",
    count: 10
    },
    {
    user: "as",
    address:"hyd1",
    count: 20
    },
    {
    user: "ad",
    address:"hyd2",
    count: 30
    }
    ]
    var count = this.countCheck(mockFilterData,"a") > 0 ? this.countCheck(mockFilterData,"a") : 'no user found';
    console.log(count,'count value') ;
    countCheck(obj: any,value: any){
    const result = obj.filter((x: any) => x.user === value).map(function (ele: any) {
    return ele.count;;
    });
    return result;
    }

  • @priyanshukumar8463
    @priyanshukumar8463 Год назад +2

    could you please share the L2 round interview questions?

  • @Venkat-w8c
    @Venkat-w8c Год назад +2

    please upload more javascript coding question

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

    Hi can u upload the JavaScript and angular coding question

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

    where is he from? Italian?

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

    upload second round also once u hava done....

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

      Sure i will

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

      How to prepare for junior level for ui or front end developer or web developer role…need your assistance 🙏

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

      @@rams9169 i will create other video for this

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

    which company

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

    Company name ??

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

    😊

  • @sureshsuresh-xk5bi
    @sureshsuresh-xk5bi Год назад

    hi
    2020 candidates can be accepted as fresher for angular developer

  • @VishalGupta-jh2yi
    @VishalGupta-jh2yi Год назад +5

    Ye muh se supari nikal ke baat kar re baba

  • @tunirsaha
    @tunirsaha 2 месяца назад

    function getCount(arr, name) {
    return arr?.filter(i => i.user === name)[0]?.count || 'Not Found'
    }

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

    Mentos 😂

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

    use .find