Tech Interview Prep Resources (MEAN)
Developer Interview Questions 1 Developer Interview Questions 2 Javascript Algorithm Questions
Developer Interview Questions 1 Developer Interview Questions 2 Javascript Algorithm Questions
You met a child, who due to physical disability, is unable to play red rover with his friends. Having seen his great despair, you decided to make a robot that the child can control and thus take part in the game with his friends. Your goal is to get the
Using the readline-sync package, write a program that allows a user to create their own dictionary. When the program starts, a menu should display asking the user which of the following they would like to do: 1. Insert a word and its definition 2. Look up an existing word's definition
Create a function that, given any non-empty string, returns a string where each character is concocted with each of the preceding characters. Example: stringSplosion("ab") //Output: "aab" stringSplosion("abc") //Output: "aababc" stringSplosion("Code") //Output: "CCoCodCode" Hint: You'll first want to identify the pattern before writing the code.
We want to program our alarm clock according to our schedule. In this exercise, we will create a function that has a parameter for weekdays and another for holidays. Both arguments, to be passed in, will be booleans. This function should know when we should sleep in, returning true. Example: