Skip to content

Commit 6d995df

Browse files
committed
1 > 11 > 2 > 3 bitti
1 parent 5051d4b commit 6d995df

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

  • 1-js/11-async/02-promise-basics/03-animate-circle-promise
Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11

2-
# Animated circle with promise
2+
# Söz ile hareketli çember.
3+
<info:task/animate-circle-callback> görevindeki `showCircle` fonksiyonu callback yerine söz döndürerek tekrar yazınız.
34

4-
Rewrite the `showCircle` function in the solution of the task <info:task/animate-circle-callback> so that it returns a promise instead of accepting a callback.
5-
6-
The new usage:
5+
Yeni kullanım:
76

87
```js
98
showCircle(150, 150, 100).then(div => {
109
div.classList.add('message-ball');
1110
div.append("Hello, world!");
1211
});
1312
```
14-
15-
Take the solution of the task <info:task/animate-circle-callback> as the base.
13+
<info:task/animate-circle-callback> çözümünü temel varsayın.

0 commit comments

Comments
 (0)