Title:
Impetus - Frontend Engineer - Technical Screen
Description:
Education: Bachelor’s Degree
Years of Experience (YOE): 4
Questions Asked:
- Two Sum Problem:
- Input: nums = [2,7,11,15], target = 9
- Output: [0,1]
- Explanation: nums[0] + nums[1] == 9, so the output is [0, 1].
- Implement a function to debounce an input event in JavaScript.
- Explain the difference between
var
,let
, andconst
in JavaScript. - Build a simple React component that fetches data from an API and displays it.