WEB124 Project 3

Nicola Clark

1. Create a variable to store your full name.
const myName = 'Nicola Clark';
2. Create a variable to store your desired annual salary.
const myDesiredAnnualSalary = 60_000;
3. Create a variable to store your veteran status.
const amIAVeteran = false;
4. Create an array to store the names of three of your friends.
const threeOfMyFriends = ['Jay', 'Alssya', 'Tonisha'];
5. Create an array to store the desired annual salaries of your three friends.
const myThreeFriendsDesiredSalaries = [84_000, 72_000, 60_000];
5. Create a literal object to store the first name, last name, and desired annual salaries of a fourth friend.
const myFourthFriend = {
  firstName: 'Colton',
  lastName: 'H',
  desiredSalary: 84_000,
};