Initial interview and then a technical interview. The initial interview, you just talk about yourself and your experience. The technical interview is someone else interviews you . You open a blank document and answer this:
const array = [7,2,8,9,4,2,5,8,6,1,2,3]
array.filter(x < 3)
const string = ["m", "a", "d", "a", "m"]
for(i = 0; i < string.length; i++){
console.log(i)
}