- Fork and clone this repository
- Create a separate file for each exercise under
js
. This will make it easier to keep track of solutions- It may also be beneficial to copy/paste any data structures provided
- Write JavaScript code to obtain the data prompted by each question
- Test each file by running it in the browser. Example:
<script src="js/name-of-file.js"></script>
1.) Find the last name in the following array:
var friends = [
'Moe',
'Larry',
'Curly',
'Jane',
'Emma',
'Elizabeth',
'Elinor',
'Mary',
'Darcy',
'Grey',
'Lydia',
'Harriet'
];
2.) Sort the list of friends
above in alphabetical order.
3.) There is a list of names in a string below. How could we sort them alphabetically? Hint: use string and array methods.
var friends = 'Moe,Larry,Curly,Jane,Emma,Elizabeth,Elinor,Mary,Darcy,Grey,Lydia,Harriet';
4.) List all the friends
above in reverse alphabetical order.
5.) We have two lists of friends below. Combine the two arrays into one array, then sort them alphabetically.
var myFriends = [
'Rickon',
'Meera',
'Hodor',
'Jojen',
'Osha',
'Rickard',
'Maester',
'Rodrik',
'Jory',
'Septa',
'Jon'
];
var yourFriends = [
'Bilbo',
'Boromir',
'Elrond',
'Faramir',
'Frodo',
'Gandalf',
'Legolas',
'Pippin'
];
6.) I have a list of favorite foods below. If Popcorn
is my favorite food and Potato chips
my second favorite, then how would you find the rank of another food? Try finding the rank of Pho
.
var foods = [
'Popcorn',
'Potato chips',
'Shrimp',
'Chicken rice',
'Poutine',
'Tacos',
'Toast',
'French Toast',
'Crab',
'Pho',
'Lasagna',
'Brownie',
'Lobster',
'Donuts',
'Ice cream',
'Hamburger',
'Sushi',
'Chocolate',
'Pizza'
];
7.) I made a mistake with my favorite foods. How can I find the index of Donuts
and remove it? (Hint: look up splice
)
8.) My friends want to know what my 5
th to 10
th favorite foods are. How would I find these foods?
9.) How would you create an object that efficiently stored the following information? Hint: You only need one object.
'Moe' is 18
'Larry' is 19
'Curly' is 20
'Jane' is 20
'Emma' is 21
'Elizabeth' is 18
'Elinor' is 23
'Mary' is 25
'Darcy' is 24
'Grey' is 18
'Lydia' is 24
'Harriet' is 18
10.) BONUS - Here are a list of ages
var ages = [83, 53, 37, 29, 60, 30, 66, 19, 59, 41, 9, 64, 19, 80, 24, 53, 70, 1, 53, 40, 92, 4, 71, 65, 8, 2, 51, 80, 94, 37, 80, 64, 19, 6, 14];
find the median
age. The median is the number that is halfway into the sorted set. To remember the definition of a median, just think of the median of a road, which is the middlemost part of the road.
- All content is licensed under a CC-BY-NC-SA 4.0 license.
- All software code is licensed under GNU GPLv3. For commercial use or alternative licensing, please contact [email protected].