Javascript Experienced Interview questions and answers | javascript interview questions

Javascript Experienced Interview questions and answers | javascript interview questions

Ui Dev Guide

4 месяца назад

4,491 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@technostacks682
@technostacks682 - 19.04.2024 00:22

arr = [1, 2, 3, 4, 1, 2, 3, 3, 3];

const map = new Map();

arr.forEach((element) => {
if (map.has(element)) {
map.set(element, map.get(element) + 1);
} else {
map.set(element, 1);
}
});

const objFormat = Object.fromEntries(map);
console.log(objFormat);

// Try this

Ответить
@technostacks682
@technostacks682 - 19.04.2024 00:21

The last question, "occurrence of array elements," does not like a standard approach.

Ответить
@raulcalvo4230
@raulcalvo4230 - 28.03.2024 15:53

Since people request interviews for specific technologies may I ask for a vuejs interview? Thanks.

Ответить
@adarshsingh3865
@adarshsingh3865 - 14.03.2024 09:52

How many year of exp is this interview for?

Ответить
@user-gn8gx6mg8d
@user-gn8gx6mg8d - 11.03.2024 19:22

Very nice

Ответить
@ketanthorat4337
@ketanthorat4337 - 11.03.2024 18:57

sir can you please provide 3 years experience react and javascript questions

Ответить