Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed error does not match challenge id #4

Merged
merged 1 commit into from
Oct 26, 2024
Merged
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
16 changes: 8 additions & 8 deletions curriculum/challenges/_meta/basic-javascript/meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,6 @@
"id": "661bc7a2b575475da9a67513",
"title": "Variable Declaration"
},
{
"id": "6606c952f62155112026cbb0",
"title": "Declare JavaScript Variables"
},
{
"id": "66126195048243f78835919c",
"title": "Understanding Input and Output in JavaScript"
Expand All @@ -90,10 +86,6 @@
"id": "6639bd2d8170d75242be99cb",
"title": "Get User Input"
},
{
"id": "6606ca03a0aa92116bead97f",
"title": "Storing values with the assignment operator"
},
{
"id": "6606ca2b9b8fc711a74602f5",
"title": "Initializing Variables with the assignment operator"
Expand Down Expand Up @@ -441,6 +433,14 @@
{
"id": "66288d9daeeabf161b9ccb3c",
"title": "Print Pattern from an Array"
},
{
"id": "671ccdd08c54ac7f2cfc9f18",
"title": "Storing values with the Assignment Operator"
},
{
"id": "671cce54b4f158821ef77b2c",
"title": "Declare JavaScript Variables"
}
]
}
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
---
id: 6606c952f62155112026cbb0
id: 671cce54b4f158821ef77b2c
title: Declare JavaScript Variables
challengeType: 1
dashedName: declarejavascriptvariables

dashedName: declare-javascript-variables
---

# --description--
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
---
id: 6606ca03a0aa92116bead97f
title: Storing values with the assignment operator
id: 671ccdd08c54ac7f2cfc9f18
title: Storing values with the Assignment Operator
challengeType: 1
dashedName: storingvalueswithassignmentoperator

dashedName: storing-values-with-assignment-operator
---

# --description--
Expand Down Expand Up @@ -124,3 +123,4 @@ var a;
var a;
a = 7;
```

Loading