interview-questions-in-javascript icon indicating copy to clipboard operation
interview-questions-in-javascript copied to clipboard

A mostly reasonable collection of technical software development interview questions solved in Javascript

Results 4 interview-questions-in-javascript issues
Sort by recently updated
recently updated
newest added

Find below optimized code for intersection of two arrays: var firstArray = [2, 2, 4, 1,5,2,3,6,4,22,2]; var secondArray = [1, 2, 0, 2]; intersection(firstArray, secondArray); // [2, 1] function intersection(firstArray,...

[5.1](https://github.com/kennymkchan/interview-questions-in-javascript#numbers--power-of-two) is a classic solution in most languages that have real integer types. Unfortunately, JS number is not a real integer. It will fall back to 32-bit signed integer when...