From 2a8c47669940d569ceb36943ef9243ad0f0ec0fb Mon Sep 17 00:00:00 2001 From: sareepattamannil Date: Fri, 31 May 2024 13:12:36 -0400 Subject: [PATCH] add a new function --- main.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/main.js b/main.js index 1ba4a00..dbddf7d 100644 --- a/main.js +++ b/main.js @@ -1,4 +1,7 @@ console.log('this is my parent file') console.log('this is a new change to parent') -const add = (a, b) => { return a + b } \ No newline at end of file +const add = (a, b) => { return a + b } + + +const subtract = (a, b) => { return a - b } \ No newline at end of file