From cf1c877e80a5c53e6eff6a6f76851f0c82b4a46f Mon Sep 17 00:00:00 2001 From: Narayan Paul <158485405+narayan123git@users.noreply.github.com> Date: Tue, 24 Mar 2026 11:57:54 +0530 Subject: [PATCH 1/4] Add test log message to test.js --- test.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test.js b/test.js index f33eb88..edfdd5c 100644 --- a/test.js +++ b/test.js @@ -1 +1,2 @@ console.log("Hello from Github!!"); +console.log("This is a test PR."); From 36ffdc0bcbaafb02f31ebe7f80856461264886ae Mon Sep 17 00:00:00 2001 From: Narayan Paul <158485405+narayan123git@users.noreply.github.com> Date: Wed, 25 Mar 2026 20:06:01 +0530 Subject: [PATCH 2/4] Add variable assignment in test.js --- test.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test.js b/test.js index edfdd5c..f78fafe 100644 --- a/test.js +++ b/test.js @@ -1,2 +1,3 @@ console.log("Hello from Github!!"); console.log("This is a test PR."); +a=3; From 282ecccd0fe817fe771abfd92916f9c36cf6e34e Mon Sep 17 00:00:00 2001 From: Narayan Paul <158485405+narayan123git@users.noreply.github.com> Date: Wed, 25 Mar 2026 20:33:50 +0530 Subject: [PATCH 3/4] Add variable 'b' with value 8 to test.js --- test.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test.js b/test.js index f78fafe..dcaf0f9 100644 --- a/test.js +++ b/test.js @@ -1,3 +1,4 @@ console.log("Hello from Github!!"); console.log("This is a test PR."); a=3; +b=8; From ee3b3faf7346db327d70bb91741c6e951d4b1b70 Mon Sep 17 00:00:00 2001 From: Narayan Paul <158485405+narayan123git@users.noreply.github.com> Date: Wed, 25 Mar 2026 20:44:48 +0530 Subject: [PATCH 4/4] Remove variable assignments from test.js --- test.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/test.js b/test.js index dcaf0f9..edfdd5c 100644 --- a/test.js +++ b/test.js @@ -1,4 +1,2 @@ console.log("Hello from Github!!"); console.log("This is a test PR."); -a=3; -b=8;