Skip to content

Commit f3b3f5e

Browse files
authored
fix: solution 7-36
1 parent 73924d3 commit f3b3f5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

7-objects/36-pokemon.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Pokémon 📟
22
// Codédex
33

4-
pokemon = {
4+
const pokemon = {
55
name: "Pikachu",
66
type: "Electric",
77
level: 25,
@@ -14,4 +14,4 @@ console.log(pokemon);
1414
pokemon.isCaught = true;
1515
pokemon.name = "Pikapal";
1616

17-
console.log(pokemon);
17+
console.log(pokemon);

0 commit comments

Comments
 (0)