diff --git a/2-ui/1-document/07-modifying-document/1-createtextnode-vs-innerhtml/task.md b/2-ui/1-document/07-modifying-document/1-createtextnode-vs-innerhtml/task.md index e127bc0ef..4228d8d42 100644 --- a/2-ui/1-document/07-modifying-document/1-createtextnode-vs-innerhtml/task.md +++ b/2-ui/1-document/07-modifying-document/1-createtextnode-vs-innerhtml/task.md @@ -4,9 +4,9 @@ importance: 5 # createTextNode vs innerHTML vs textContent -We have an empty DOM element `elem` and a string `text`. +Boş bir DOM elementimiz `elem` ve bir string metnimiz `text` var. -Which of these 3 commands do exactly the same? +Bu 3 komuttan hangisi tamamen aynıdır? 1. `elem.append(document.createTextNode(text))` 2. `elem.innerHTML = text` diff --git a/2-ui/1-document/07-modifying-document/11-append-to-list/task.md b/2-ui/1-document/07-modifying-document/11-append-to-list/task.md index 543cd3e46..dccdccdd3 100644 --- a/2-ui/1-document/07-modifying-document/11-append-to-list/task.md +++ b/2-ui/1-document/07-modifying-document/11-append-to-list/task.md @@ -4,7 +4,7 @@ importance: 5 # Insert the HTML in the list -Write the code to insert `
  • 2
  • 3
  • ` between two `
  • ` here: +Buraya iki `
  • ` arasına `
  • 2
  • 3
  • ` eklemek için kodu yazın: ```html