Ich habe mich online beworben. Vorstellungsgespräch absolviert im Mai 2019 bei Informatica (Bengaluru)
Vorstellungsgespräch
It was quiet good, didn't take much time. They selected only shortlisted candidates. Around 25 people were there at that time. But the panel is with high attitude because of him they are going to loose good candidates, he himself describing definition for everything in JavaScript and expecting the candidates to say the same.
Fragen im Vorstellungsgespräch [1]
Frage 1
What is the out put for the following code
var x;
var y = function() {
return {
z: 10,
x: function () {
console.log('x');
}
};
}
y();
x();