Skip to content

Commit dd5b2f7

Browse files
committed
attempt to update after reset
1 parent d3cefa9 commit dd5b2f7

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

objects-and-math/exercises/ObjectExercises.js

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,28 @@ let salamander = {
1212
age: 5
1313
};
1414

15+
let superChimpTwo = {
16+
name: "Brad",
17+
species: "Chimpanzee",
18+
mass: 11,
19+
age: 6
20+
};
21+
22+
let dog = {
23+
name: "Leroy",
24+
species: "Beagle",
25+
mass: 14,
26+
age: 5
27+
};
28+
29+
let microOrganism = {
30+
name: "Almina",
31+
species: "Tardigrade",
32+
mass: 0.0000000001,
33+
age: 1
34+
};
35+
36+
1537

1638
// After you have created the other object literals, add the astronautID property to each one.
1739

0 commit comments

Comments
 (0)