Frontend
What do you know about primitives in JavaScript?
What are undefined variables in JavaScript?
What is interpolation in the context of programming?
What array methods modify its contents?
What is an important feature of a pipe in the context of data processing?
How to make an object property immutable?
How to remove an event handler?
How can we make one element appear above another in layout?
What is REST API?
Which elements in HTML5 can use ARIA attributes?
What is quirks mode in web development?
What are memory leaks and why are they problematic?
How is an HTTP request performed?
What is object-oriented programming (OOP)?
What is the architectural pattern MVVM?
Which sites can benefit from AMP?
/* What will be printed in the console */ console.log(1); Promise.resolve().then(() => console.log(2)); setTimeout(() => console.log(3)); Promise.resolve().then(() => console.log(4)); console.log(5); setTimeout(() => { Promise.resolve().then(() => console.log(6)); console.log(7); Promise.resolve().then(() => console.log(8)); }, 0); setTimeout(() => console.log(9));
What is the purpose of a linter in the development process?
List the patterns related to behavioral ones.
How does the apply method work in JavaScript?