Skip to content

Commit 41c1412

Browse files
authored
20. satırda kaldım
1 parent 19324f4 commit 41c1412

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

1-js/11-async/05-promise-api/article.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
# Promise API
22

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

55
## Promise.resolve
66

7-
The syntax:
7+
Söz dizimi:
88

99
```js
1010
let promise = Promise.resolve(value);
1111
```
1212

13-
Returns a resolved promise with the given `value`.
14-
15-
Same as:
13+
Verilen `value` ile çözülmüş olan bir söz verir.
14+
Buradaki gibi:
1615

1716
```js
1817
let promise = new Promise(resolve => resolve(value));

0 commit comments

Comments
 (0)