Guest User

Untitled

a guest
Feb 21st, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. // Function adds two numbers and returns the sum
  2. const addNumbers = (a,b) => a + b;
  3.  
  4. // Exposes the module so that it can be used in other files
  5. export default addNumbers;
Add Comment
Please, Sign In to add comment