#interview #javascript #angular Selected Interview for UI developer | L1 -First round of Interview

preview_player
Показать описание
#interview #javascript #angular Selected Interview for UI developer | L1 -First round of Interview
Рекомендации по теме
Комментарии
Автор

very clear and easy interview for such a good exp.

avanishkumar
Автор

could you please share the L2 round interview questions?

priyanshukumar
Автор

please upload more javascript coding question

poeumtb
Автор

.filter itself return array.

you have to iterate ... such as
filteredItems[0].count
like this

Anonymous
Автор

Hi can u upload the JavaScript and angular coding question

dakshtagatfane
Автор

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

sumannayak
Автор

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;
}

poojaraut
Автор

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");

jagatbandhu
Автор

hi
2020 candidates can be accepted as fresher for angular developer

sureshsuresh-xkbi
Автор

Ye muh se supari nikal ke baat kar re baba

VishalGupta-jhyi