We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9271ecc commit 837013dCopy full SHA for 837013d
2-ui/1-document/07-modifying-document/4-clear-elem/task.md
@@ -4,17 +4,17 @@ importance: 5
4
5
# Clear the element
6
7
-Create a function `clear(elem)` that removes everything from the element.
+`clear(elem)` adında, elementen herşeyi kaldıran bir fonksiyon yarat.
8
9
```html run height=60
10
<ol id="elem">
11
- <li>Hello</li>
12
- <li>World</li>
+ <li>Merhaba</li>
+ <li>Dünya</li>
13
</ol>
14
15
<script>
16
- function clear(elem) { /* your code */ }
+ function clear(elem) { /* sizin kodunuz */ }
17
18
- clear(elem); // clears the list
+ clear(elem); // listeyi temizler
19
</script>
20
```
0 commit comments