DEV Community

Cover image for DOM Manipulation Sandbox
Tia Eastwood
Tia Eastwood

Posted on

 

DOM Manipulation Sandbox

So I've been learning how to work with JavaScript to manipulate the DOM and create interactivity on web pages. During this time, I found that despite all of the videos I watched on the subject, it didn't really sink in until I just started having a mess about and experimenting. It got so much easier after this! I created this DOM Manipulation Sandbox on Codepen to help me practice, and I hope it helps you out too!

Check out the examples I've put on there and then start adding your own and seeing what you can do with it. :)

Top comments (0)

An Animated Guide to Node.js Event Loop

Node.js doesn’t stop from running other operations because of Libuv, a C++ library responsible for the event loop and asynchronously handling tasks such as network requests, DNS resolution, file system operations, data encryption, etc.

What happens under the hood when Node.js works on tasks such as database queries? We will explore it by following this piece of code step by step.