From c2749a6d424cc72acb687b2e42f02003c42d8080 Mon Sep 17 00:00:00 2001 From: Manav Kumar Date: Tue, 2 Jul 2019 01:42:12 +0530 Subject: [PATCH] Another function added in file02.js --- file02.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/file02.js b/file02.js index 00e118d..16439ca 100644 --- a/file02.js +++ b/file02.js @@ -1,3 +1,10 @@ console.log("Hey! We'r learning git") console.log('Use "git status" to check status') -console.log('Use "git log" to see history') \ No newline at end of file +console.log('Use "git log" to see history') + +function newfun(name) +{ + console.log('Another function to print the name ' + name) +} + +newfun('Manav') \ No newline at end of file