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

Update upload-images.md [replace in by of for multiple files upload] #698

Merged
merged 1 commit into from
Nov 18, 2021

Conversation

Sequoya42
Copy link
Contributor

Replace in with of

[ [ 1, 'toto' ], [ 2, 'tata' ] ]
> for (z of x) { console.log(z)}
[ 1, 'toto' ]
[ 2, 'tata' ]
undefined
> for (z in x) { console.log(z)}
0
1```

Otherwise, trying to access img[0] does not make sense.

Replace `in` with `of` 

```> x
[ [ 1, 'toto' ], [ 2, 'tata' ] ]
> for (z of x) { console.log(z)}
[ 1, 'toto' ]
[ 2, 'tata' ]
undefined
> for (z in x) { console.log(z)}
0
1```

Otherwise, trying to access img[0] does not make sense.
@ygj6 ygj6 merged commit e21d5e3 into hinesboy:master Nov 18, 2021
@ygj6
Copy link
Collaborator

ygj6 commented Nov 18, 2021

Thank you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants