Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Який синтаксис коректно експортує кілька сутностей з ES модуля?
exports.foo = foo; exports.bar = bar;
module.exports = { foo, bar }
export { foo, bar };
export default { foo, bar };
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!