mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-04-06 11:50:58 -04:00
5 lines
64 B
JavaScript
5 lines
64 B
JavaScript
function sum(a, b) {
|
|
return a + b;
|
|
}
|
|
|
|
module.exports = sum;
|