ما قصد داریم این پروژهٔ متنباز را در دسترس همهٔ مردم در سرتاسر دنیا قرار دهیم.
به ترجمهٔ محتوای این آموزش به زبان خودتان کمک کنید/a>.
What does the script show?
<html> <body> <script> alert(document.body.lastChild.nodeType); </script> </body> </html>
There’s a catch here.
At the time of <script> execution the last DOM node is exactly <script>, because the browser did not process the rest of the page yet.
<script>
So the result is 1 (element node).
1