I applied through an employee referral. The process took 3 weeks. I interviewed at financial.com (Cochin) in July 2023
Interview
first there will be a Testdome JavaScript test, (go the testdome.com and try solving the public tests before you attempt the real test) Then an hr interview - salary discussion, about company, they might also ask some basic JS questions (was caught off guard here, do check some well-curated js questions). final round -with CTO and senior developer, both are very kind and welcoming , be sure to brush up on javascript , the things you mentioned in your CV , and they might bring up the testdome questions you attempted in the first round there will be trick questions on hoisting (var), bind call apply, determine the output-order of execution of js browser code (SetTimeout , Promises, console.log, etc), questions related to react/vue if you mentioned it in your CV, CSS questions like nthchild, pseudo-selectors, pseudo-elements (dont get them confused), HTML questions on meta tags, async vs defer attributes , default behavior of scripts and how they are loaded on the web browser
Interview questions [4]
Question 1
Determine the output for (var i = 0; i < 10; i++) { setTimeout(() => console.log(i), 0); } Follow up with closure , the use of bind method