Skip to content

Commit

Permalink
fix typo in "Iteration Protocols" (mdn#16601)
Browse files Browse the repository at this point in the history
  • Loading branch information
LemonAppleMo authored and mfuji09 committed Oct 19, 2023
1 parent 9a9d8b9 commit d063d85
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ function makeIterator(array) {
};
}

const it = makeIterator(["yo", "ya"]);\
const it = makeIterator(["yo", "ya"]);

console.log(it.next().value); // 'yo'
console.log(it.next().value); // 'ya'
Expand Down

0 comments on commit d063d85

Please sign in to comment.