-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmission.js
63 lines (48 loc) · 2.2 KB
/
mission.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
//Mission 1: Justin
//Declare a variable named zippys and assign it an array of 5 items sold at Zippys Restaurant.
var zippys = [zipPac, surfPac, koreanFriedChicken, koreanFriedChickenSalad, chickenKatsu];
//Mission 2: Andrew
//Declare a variable named giraffe and assign it an object with 5 key value pairs of your choosing.
let giraffe = {
height: 2,
length: 4,
width: 3,
type: 'animal',
isAGiraffe: false
}
//Mission 3: Lewis
//Declare a variable named bank and assign to your favorite Hawaii bank.
const bank = "American Savings Bank";
//Mission 4: Rian
//Declare a variable named price and assign the cost of a chicken katsu plate lunch from L&L Drive Inn.
let price = 'One million dollars';
//Mission 5: Kevin
//Declare a variable named weather and assign it tomorrow's weather forecast.
var weather = ['86F','30C'];
//Mission 6: Art
//Declare a variable named country and assign it an array of 3 countries that you've visited (or want to visit).
var country = ['Japan, ', 'Bahamas, ','Italy, ','New Yok']
//Mission 7: Rina
//Declare a variable named greeting and assign it to a Russian greeting for 'hello world'.
let greeting = 'Привет, мир';
//Mission 8: Calvin
//Declare a variable named candyWrapper and assign it to a candy bar that has orange in its wrapper
let candyWrapper = "Skittles";
//Mission 9: Phi
//Declare a variable named beach and assign it to the number of beaches on Oahu.
let beach = 125; // 'thats a fact!' - pewDiePie
//Mission 10: Janelle
//Declare a variable named middleName and assign it to the middle name of the person sitting next to you.
var mName = 'Ceasar';
//Mission 11: David
//Declare a variable named kicks and assign it to the brand of shoes that you are currently wearing.
var kicks = "nike react"
//Mission 12: Keith
//Declare a variable named chips and assign it to the potato chips that are currently on sale at Longs Drugs.
var chips = 'Frito Lay Chips';
//Mission 13: Daniel
//Declare a variable named cheeseCake and assign it to the number of cheese cake flavors that CheeseCake Factory offers.
var cheeseCake = 36;
//Mission 14: Brian
//Declare a variable named ronald and assign it to the number McDonald's restaurants in Hawaii.
var ronald = 76;