mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2024-12-26 22:30:44 -05:00
5 lines
64 B
JavaScript
5 lines
64 B
JavaScript
function sum(a, b) {
|
|
return a + b;
|
|
}
|
|
|
|
module.exports = sum;
|