Skip to content

Commit ce7304c

Browse files
Dorin-Davidpasor1
andauthored
Update 2-ui/1-document/04-searching-elements-dom/1-find-elements/solution.md
Co-authored-by: Simone Pasini <66781510+pasor1@users.noreply.github.com>
1 parent 5800735 commit ce7304c

File tree

1 file changed

+1
-1
lines changed
  • 2-ui/1-document/04-searching-elements-dom/1-find-elements

1 file changed

+1
-1
lines changed

2-ui/1-document/04-searching-elements-dom/1-find-elements/solution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ form.getElementsByTagName('input')[0]
2929
// oppure
3030
form.querySelector('input')
3131

32-
// 6. L'ultimo input nella form
32+
// 6. L'ultimo input in form
3333
let inputs = form.querySelectorAll('input') // trova tutti gli input
3434
inputs[inputs.length-1] // prendi l'ultimo
3535
```

0 commit comments

Comments
 (0)