Размер видео: 1280 X 720853 X 480640 X 360
Показать панель управления
Автовоспроизведение
Автоповтор
very clear and easy interview for such a good exp.
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");
.filter itself return array.you have to iterate ... such as filteredItems[0].countlike this
What about find()?
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;}
could you please share the L2 round interview questions?
please upload more javascript coding question
Hi can u upload the JavaScript and angular coding question
Sure we will upload
where is he from? Italian?
😂😂😂
Russia 😂😂😂
upload second round also once u hava done....
Sure i will
How to prepare for junior level for ui or front end developer or web developer role…need your assistance 🙏
@@rams9169 i will create other video for this
which company
Company name ??
😊
hi 2020 candidates can be accepted as fresher for angular developer
Yes I think
Ye muh se supari nikal ke baat kar re baba
function getCount(arr, name) { return arr?.filter(i => i.user === name)[0]?.count || 'Not Found' }
Mentos 😂
use .find
very clear and easy interview for such a good exp.
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");
.filter itself return array.
you have to iterate ... such as
filteredItems[0].count
like this
What about find()?
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;
}
could you please share the L2 round interview questions?
please upload more javascript coding question
Hi can u upload the JavaScript and angular coding question
Sure we will upload
where is he from? Italian?
😂😂😂
Russia 😂😂😂
upload second round also once u hava done....
Sure i will
How to prepare for junior level for ui or front end developer or web developer role…need your assistance 🙏
@@rams9169 i will create other video for this
which company
Company name ??
😊
hi
2020 candidates can be accepted as fresher for angular developer
Yes I think
Ye muh se supari nikal ke baat kar re baba
function getCount(arr, name) {
return arr?.filter(i => i.user === name)[0]?.count || 'Not Found'
}
Mentos 😂
use .find