- Notifications
You must be signed in to change notification settings - Fork3.9k
Fix grammar and update an example#3633
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:master
Are you sure you want to change the base?
Conversation
There was a problem hiding this 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 |
There was a problem hiding this comment.
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 |
There was a problem hiding this comment.
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 commentedMay 5, 2024
Please make the requested changes. After it, add a comment "/done". |
No description provided.