You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<info:task/animate-circle-callback> görevindeki `showCircle` fonksiyonu callback yerine söz döndürerek tekrar yazınız.
3
4
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:
7
6
8
7
```js
9
8
showCircle(150, 150, 100).then(div=> {
10
9
div.classList.add('message-ball');
11
10
div.append("Hello, world!");
12
11
});
13
12
```
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