Mongo Shell Practice
Using the `mongo` shell, you will perform all possible CRUD operations on a database collection of candies.
Using the `mongo` shell, you will perform all possible CRUD operations on a database collection of candies.
In a typical React application, data is passed top-down (parent to child) via props, but this can be cumbersome for certain types of props (e.g. locale preference, UI theme) that are required by many components within an application.
Higher order components, or HOC's, are simply functions that take React Components as arguments, or return them as values, or both.
Write a mocha/chai test for a function called `getLongestString` that does the following: ...
Warm up Write a function that returns the missing number from an unsorted array of numbers. * Create a function that identifies the range of numbers within a given array. * Have the function return all numbers missing within the range. Example: function findMissingNo([3,5,4,8,1,2,7]){ //Find