Skip to content

Conversation

@berat
Copy link
Contributor

@berat berat commented Nov 21, 2019

  1. satırdı bulunan "technically can be any iterable, but usually an array" satırını çeviremedim.

technically can be any iterable, but usually an array çevirisi yapılmadı 77. satır.
@javascript-translate-bot javascript-translate-bot requested a review from a team November 21, 2019 08:59
@sahinyanlik sahinyanlik merged commit ed58560 into javascript-tutorial:master Nov 28, 2019
@aligoren
Copy link

1. satırdı bulunan "technically can be any iterable, but usually an array" satırını çeviremedim.

Teknik olarak herhangi bir yinelenebilir nesne, ama çoğunlukla bir array diyor. En basitinden şu 2 örnek verilebilir;

const characters = 'Atatürk'

for(let char of characters) {
	console.log(char)
}

Ya da bu şu örnek olabilir;

const myObject = {
	'apple': 'elma',
	'banana': 'muz'
}

for (let key in myObject) {
  console.log(key, myObject[key]);
}

Bilgin olması için belirteyim istedim, teşekkürler.

@berat
Copy link
Contributor Author

berat commented Dec 18, 2019

Çeviri kısmında sıkıntı olmuştu. Şimdi halletmiş olduk teşekkür ederim.

# Promise API

There are 5 static methods in the `Promise` class. We'll quickly cover their use cases here.
`Promise`de 5 statik yöntem vardır. Kullanım davalarını burada hızlı bir şekilde ele alacağız.

Choose a reason for hiding this comment

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

Kullanım davaları yerine "Kullanım durumlarını" demek daha doğru olur. Örneğin bu "when to use" sorusunun yani ne zaman kullanmalıyız sorusunun cevabını içeren bir açıklama oluyor.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants