Technical JavaScript challenge about pricing store
Frontend Engineer Interview Questions
12,707 frontend engineer interview questions shared by candidates
Find common elements in array. Give 2 or more solutions and compare time and space complexity.
One of the question was: What was your working history, what technologies did you used and why?
Reverse an array.
Your experience for a position
What is a polyfill in JavaScrip?
For navigation links, should you use an anchor () or a button () in HTML?
Q: What projects are you working on?
class Foo { add5(value){ value = value + 5; return value; } addElement(arr, elem) { arr.push(elem); return arr; } increment(arr) { arr[0]++; return arr; } } let fooInstance = new Foo(); let a = 9; const arr1 = [1,2]; const arr2 = [1,2,1]; fooInstance.add5(a); fooInstance.addElement(arr1, 3); fooInstance.increment(arr2); console.log(a); // ??? console.log(arr1); // ?? console.log(arr2); // ??
var count = Count(10); count(); // 10 count(); //11 count() // 12 *implement function
Viewing 241 - 250 interview questions