11 lines
178 B
JavaScript
11 lines
178 B
JavaScript
// Copyright (c) Daniel Gakwaya.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
export function add(age1,age2){
|
|
return age1 + age2
|
|
}
|
|
|
|
function subtract(age1,age2){
|
|
return age1 - age2;
|
|
}
|