Senior Full Stack Developer Interview Questions

964 senior full stack developer interview questions shared by candidates

recreating "lodash"-like functions: Implementing some(arr, func) to return TRUE if some elements in the array satisfy the function. Creating a neg(func)(value) function that takes a function and returns a negated version. Using both some() and neg() to implement every(arr, func).
avatar

Senior Full Stack Developer

Interviewed at Wix

4.1
Jan 22, 2025

recreating "lodash"-like functions: Implementing some(arr, func) to return TRUE if some elements in the array satisfy the function. Creating a neg(func)(value) function that takes a function and returns a negated version. Using both some() and neg() to implement every(arr, func).

Given an array of numbers where every number >= 0. The items need to be connected. If no answer exists return maxInt example 1: arr = [1, 4, 45, 6, 0, 19] target = 51 output -> 3 because sum([4, 45, 6]) > 51 example 2: arr = [1, 10, 5, 2, 7] target = 9 output -> 1 because sum([10]) > 9
avatar

Senior Full Stack Developer

Interviewed at Sayata

4.5
Jul 2, 2023

Given an array of numbers where every number >= 0. The items need to be connected. If no answer exists return maxInt example 1: arr = [1, 4, 45, 6, 0, 19] target = 51 output -> 3 because sum([4, 45, 6]) > 51 example 2: arr = [1, 10, 5, 2, 7] target = 9 output -> 1 because sum([10]) > 9

Viewing 1 - 10 interview questions

Glassdoor has 964 interview questions and reports from Senior full stack developer interviews. Prepare for your interview. Get hired. Love your job.