frontend-challenges
frontend-challenges copied to clipboard
69 - Two functions - one object - javascript
index.js
const sharedObject = {};
export function A() {
return sharedObject;
}
export function B() {
return sharedObject;
}