JavaScript Export

// export
export default function contact(name, age) {
    console.log(`The name is ${name}. And age is ${age}.`);
}
SAMER SAEID