DEV Community

Play Button Pause Button
Lu-Vuong Le πŸš€
Lu-Vuong Le πŸš€

Posted on • Updated on

 

Differences with Default and Named Exports - ES6 JavaScript

In this video, I'll be demonstrating what the differences are when using ES6 exports with Default and Named exports.

There are some slight differences when using these and it's good to know since popular frameworks like React, Vue, and Angular make use of them! πŸ‘Œ

If you'd like to see more of my videos, head over to Youtube!

For more content, stay tuned! A follow/sub comes a long way to show support

Follow and connect with me on:

🐦 Twitter: https://twitter.com/coderarchive
πŸ“š Github: https://github.com/luvuong-le
πŸ’Ό LinkedIn: https://www.linkedin.com/in/lu-vuongle/
πŸ“· Instagram: https://www.instagram.com/coderarchive/
πŸ“ Dev.to: https://dev.to/coderarchive

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.