Write a function that uses bubble sort to sort an array
Frontend Developer Interview Questions
8,954 frontend developer interview questions shared by candidates
JavaScript and Frontend Fundamentals. Problem-Solving and Debugging.
How is an HTML page rendered?
Html, css js, reactjs,redux, problem solving
They ask you to open a website and ask you to explain how would you implement it.
recursion on objects property, copy of object
Javascript basics, React basics etc
Browser rendering stages
Print the deepest value in a nested object. The object structure can be anything. eg. Input: let x = { a: { b: { c: { d: { e: { name: "John", age: 32 } }, f: ['Hindi', 'English'] } }, g: { email: 'john@doe.com' } } }; Expected output: John 32
What will be the output of this code? Please explain the flow or reasoning behind it. console.log(1) setTimeout( () => console.log(2) ) setTimeout( () => console.log(3) ) Promise.resolve().then( () => setTimeout( () => console.log(4) ) ) Promise.resolve().then(() => console.log(5) ) setTimeout( () => console.log(6), 0 ) console.log(7)
Viewing 8371 - 8380 interview questions