The DOM & DOM Events

Hello! I am currently taking the Web Development path. I thought the lessons on the DOM & DOM Events seemed a little brief. I’ve also noticed that FreeCodeCamp has absolutely no instruction on vanilla DOM. Is this because React takes care of all those things? (I haven’t learned React yet.)

react does no such thing, understanding the DOM is quite important, MDN seem to have more extensive information:

https://developer.mozilla.org/en-US/docs/Web/API/Document_Object_Model

once you go with react, understanding the virtual DOM (VDOM):

https://reactjs.org/docs/faq-internals.html

Is quite useful.