Many questions were focused on soft skills.
Frontend Developer Interview Questions
13,290 frontend developer interview questions shared by candidates
What is the difference between an h1 and h2 tag in HTML?
Q: What are your favourite technologies to work with?
Q: Tell me about your experience with javaScript and TypesScript.
All of their questions were typical interview questions
How would you make a request without utilizing any built-in tools.
What is new in ES7?
var person = Person(“John”, “Doe”); Console.log( person.hello() ) // "Hello, John Doe" * Implement this class
I had to do a technical test
Task Runner with concurrent limit [Javascript] The problem was to complete the add function for Runner class. concurrent limit will determine the number of task Runner can run in parallel. If the concurrent limit is reached by Runner, rest of the tasked should be queued and only to be executed once the first set of task are completed. ------------------------------------------------------------- class Runner { constructor(concurrent) { } add(task) { // Add your code here. } } function task(x) { return function() { return new Promise((resolve, _) => { setTimeout(() => { console.log('task completed', x); resolve(); }, 2000); }) } } runner = new Runner(3); runner.add(task(2)) runner.add(task(2)) runner.add(task(2)) runner.add(task(4)) runner.add(task(4)) runner.add(task(4)) runner.add(task(6)) runner.add(task(6)) runner.add(task(6))
Viewing 971 - 980 interview questions