fix(curriculum): remove comments and extra code (#48531)

This commit is contained in:
Bryan Moore 2022-11-17 15:15:12 -08:00 committed by GitHub
parent aedcfa2d05
commit d268822fe4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -112,12 +112,7 @@ assert.deepEqual(
```js
function whatIsInAName(collection, source) {
const arr = [];
// Only change code below this line
// Only change code above this line
return arr;
}
whatIsInAName([{ first: "Romeo", last: "Montague" }, { first: "Mercutio", last: null }, { first: "Tybalt", last: "Capulet" }], { last: "Capulet" });