We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19324f4 commit 41c1412Copy full SHA for 41c1412
1-js/11-async/05-promise-api/article.md
@@ -1,18 +1,17 @@
1
# Promise API
2
3
-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.
4
5
## Promise.resolve
6
7
-The syntax:
+Söz dizimi:
8
9
```js
10
let promise = Promise.resolve(value);
11
```
12
13
-Returns a resolved promise with the given `value`.
14
-
15
-Same as:
+Verilen `value` ile çözülmüş olan bir söz verir.
+Buradaki gibi:
16
17
18
let promise = new Promise(resolve => resolve(value));
0 commit comments