6
I came across that term knot or Node in Javascript on the website of MDN Web Docs what would that be?
NOTE: I am not referring to the application platform Node.js.
6
I came across that term knot or Node in Javascript on the website of MDN Web Docs what would that be?
NOTE: I am not referring to the application platform Node.js.
Browser other questions tagged javascript
You are not signed in. Login or sign up in order to post.
If you understand English, this video can help you: Javascript Tutorial - Node - nodename,nodetype and nodeValue properties
– Akhena
To understand the concept of nodes, you will need to study a data structure called "tree". The browser stores the page in a tree structure called Domtree. This is a good starting point for you to begin to understand.
– fernandosavio
Related: https://stackoverflow.com/questions/24974621/what-is-a-node-in-javascript
– Sam
So a node would be any HTML element inside the DOM tree?
– marquinho