Javascript – Acces to import of the nested function JS
I need some help to get how some function export works inside JS. Let's say I have this code function goodbuy() { console.log('bye'); } function myModule() { function hello() { console.log('Hello'); } hello(); } export {goodbuy}; export default myModule; If…