Answers for "two export in the same file"

0

two export in the same file

function sum(a, b) {
  return a + b
}

function mul(a, b) {
  return a * b
}
export { sum, mul }
Posted by: Guest on August-24-2021

Code answers related to "two export in the same file"

Browse Popular Code Answers by Language