2017-07-31 11:33:31 +05:30

3 lines
98 B
JavaScript

module.exports = (age, gap) => {
return `In ${gap} years you will be ${Number(age) + gap}<br>`
}