Array Building Exercise
Make an array of 4 student objects with the following properties * name * age and the following data types: * array * boolean Print each student's name and age to the console
Make an array of 4 student objects with the following properties * name * age and the following data types: * array * boolean Print each student's name and age to the console
What is a SPA? React Router is an excellent tool we can use to help us easily turn our React applications into Single Page Applications (SPAs). In the early days of the web, when you had multiple HTML pages to your web site, you needed to create a new HTML
Exercise For this exercise you will be making a mock SPA (Single Page Application) for a plumbing company website. Your website must contain a navbar, footer, and a main view section. Your navbar must contain at least 3 Link tags to at least 3 different views (for example Home, About,
Write two functions that mimic the .every and .some array methods. every(arr, callback): Given an array and a callback function, return true or false based on whether each element of the array, when inserted as a parameter to the callback, returns true. Example: every([1,2,"3"], (num)=>{ return
Today you're making a restaurant, to start this restaurant your first going to make a menu. 1. Make an array of three object literal dishes for your menu. 2. Make a constructor function for a dish object 3. Add 3 more items to your menu using the constructor function. Now