I was given an array of nested JS objects with multiple properties. I needed to write a recursive function to loop throw the array to access each object and verify the value and delete the object if the value was negative. But remember that its a nested object, so its not just the outer array you're looping through
Full Stack Developer Interviews
Full Stack Developer Interview Questions
"Full stack engineering interviews consist primarily of technical questions. Because full stack developers work with both back-end and front-end code, you should feel comfortable working with a variety of languages and answering questions ranging from databases and web servers to HMTL and UI implementation."
19,453 full stack developer interview questions shared by candidates
Find out if two strings are anagrams.
How do you stay updated with tech trends?
If you had to choose, would you rather be a Frontend or a Backend developer?
Write a JavaScript function that takes an array of fruit names as input and returns an object where each key is the uppercase first letter of the fruit names, and the corresponding value is an array of all fruits that begin with that letter. The grouping should be case-insensitive, meaning that fruit names like "Apple" and "apple" should be treated the same, and the output should preserve the original order of the fruits within each group. The keys in the resulting object should be sorted based on the order they appear in the input array, not alphabetically. Input ['apple', 'banana', 'ananas', 'blueberry', 'cherry', 'avocado', 'blackberry'] Output { A: ['apple', 'ananas', 'avocado'], B: ['banana', 'blueberry', 'blackberry'], C: ['cherry'] }
What does the term "clean code" mean to you? 30 minutes of resume questions and past projects. Last 30 minutes of technical/coding part. The question is an easy programming question and they allow you to use pseudo code, but won't tell you if you're doing anything wrong. The problem comes with 3 revisions. // An isogram (also known as a "non-pattern word") is a word or phrase without a repeating letter, however spaces and hyphens are allowed to appear multiple times. // Examples of isograms: // - lumberjacks // - background // - six-year-old // Example of non-isograms: // - food: because o repeats // - snowing: because n repeats // - high-five: because "h" is repeated, and "i" is repeated twice in the hyphenated phrase // Input: // "Lorem ipsum dolor sit a-me-t, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." // Output: // ["dolor", "consectetur", "adipiscing", "incididunt", "dolore", "magna", "aliqua"]
Prime no, String and Matching parenthesis
What makes you excited about a greenfield project?
Break down an address (e.g. 1234 Main St Suite 9B San Francisco CA 94105) into its subparts (address line 1, address line 2, etc).
Mostly technical questions and previous work with live project
Viewing 901 - 910 interview questions