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

Fix grammar and update an example #3633

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Conversation

nakhodkin
Copy link
Contributor

No description provided.

@smith558 smith558 self-assigned this May 5, 2024
Copy link
Member

@smith558 smith558 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good except the few changes I highlighted, please revert those.

@@ -178,7 +178,7 @@ In computer science, the data structure that allows this, is called [deque](http
```js run
let fruits = ["Apple", "Orange"];

fruits.push("Pear");
alert( fruits.push("Pear") ); // add "Pear" to the end and return the new array length e.g. 3
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please revert

@@ -204,7 +204,7 @@ In computer science, the data structure that allows this, is called [deque](http
```js run
let fruits = ["Orange", "Pear"];

fruits.unshift('Apple');
alert( fruits.unshift('Apple') ); // add "Apple" in the beginning and return the new array length e.g. 3
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please revert

@javascript-translate-bot

Please make the requested changes. After it, add a comment "/done".
Then I'll ask for a new review 👻

@javascript-translate-bot javascript-translate-bot added the changes requested Waiting for changes and /done from PR author label May 5, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
changes requested Waiting for changes and /done from PR author
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants