Implement a function to return the power of a number. Once I got that right, I was shown a class implementation and asked if that was Immutable.
Desarrollador Web Full Stack Interview Questions
19,129 desarrollador web full stack interview questions shared by candidates
1.Tell me about one just a minute topic Communication skills Best moment in your life women Empowerment
Sort an array using binary search.
Daily Temperatures Leetcode question in any programming language
Solve a basic leet code question with a live compiler / interpreter
Why are you choosing our company?
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
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'] }
Viewing 871 - 880 interview questions