forked from turingschool/m0_fe_objects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsyntaxCleanUp.js
More file actions
50 lines (39 loc) · 995 Bytes
/
syntaxCleanUp.js
File metadata and controls
50 lines (39 loc) · 995 Bytes
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
// var foods = {apples: 23,
// grapes: 507,
// eggs: 48}
// var person = { height: "6 ft", weight: "160 lbs" }
// var post = { imageSrc: "./images/beach.png",
// caption: "At the beach with my besties", timestamp: "4:37 PM August 13, 2019",
// number_likes: 0,
// comments: [] }
// var post2 =
// {
// imageSrc: "./images/holiday-party.png",
// caption: "What a great holiday party omg",
// timestamp: "11:37 PM December 31, 2019",
// numberLikes: 13,
// comments: []
// }
var foods = {
apples: 23,
grapes: 507,
eggs: 48
}
var person = {
height: "6 ft",
weight: "160 lbs"
}
var post = {
imageSrc: "./images/beach.png",
caption: "At the beach with my besties",
timestamp: "4:37 PM August 13, 2019",
number_likes: 0,
comments: []
}
var post2 = {
imageSrc: "./images/holiday-party.png",
caption: "What a great holiday party omg",
timestamp: "11:37 PM December 31, 2019",
numberLikes: 13,
comments: []
}