The first round was with hiring manager with some behavioural questions.
The technical interview
const obj =
{
a: {
b: {
c: {
d: {
e: "Yes"
}
}
}
}
}
console.log(read (obj ,"a.b.c.d.e") )
// Result : YesWrite a method sum which gives the following output
sum('2','3') // Outputs 5
console.log(sum (2),(3))
Subjective Questions