mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2024-12-27 14:40:43 -05:00
6 lines
64 B
JavaScript
6 lines
64 B
JavaScript
|
function sum(a, b) {
|
||
|
return a + b;
|
||
|
}
|
||
|
|
||
|
module.exports = sum;
|