Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 5-arrays/24-grocery-trip.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Grocery Trip 馃洅
// Cod茅dex

let groceryList = ["馃 Milk", "馃 Avocado", "馃 Eggs ", "馃崬 Bread"];
let groceryList = ["馃 Milk", "馃 Avocado", "馃 Eggs", "馃崬 Bread"];

groceryList[2] = "馃 Butter";

Expand Down
2 changes: 1 addition & 1 deletion 7-objects/36-pokemon.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Pok茅mon 馃摕
// Cod茅dex

pokemon = {
const pokemon = {
name: "Pikachu",
type: "Electric",
level: 25,
Expand Down