From 83f794d606284f914083a78f87192f2d3028b8ea Mon Sep 17 00:00:00 2001 From: sonali501 Date: Sat, 28 Oct 2023 13:26:55 +0530 Subject: [PATCH 1/2] said hi --- CONTRIBUTING.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index cd17a1f..2e170be 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -16,6 +16,7 @@ Below you will find the process and workflow used to review and merge your chang - Wait for the Issue to be assigned to you after which you can start working on it. - Note : Every change in this project should/must have an associated issue. +#hii ## Step 1 : Fork the Project - Fork this Repository. This will create a Local Copy of this Repository on your Github Profile. Keep a reference to the original project in `upstream` remote. From 79e5c0c8c2d28adbc64136d232505a2cfb071fcc Mon Sep 17 00:00:00 2001 From: sonali501 Date: Sat, 28 Oct 2023 15:53:08 +0530 Subject: [PATCH 2/2] converted string to uppercase --- DSA/Strings/uppercase.js | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 DSA/Strings/uppercase.js diff --git a/DSA/Strings/uppercase.js b/DSA/Strings/uppercase.js new file mode 100644 index 0000000..952e3db --- /dev/null +++ b/DSA/Strings/uppercase.js @@ -0,0 +1,3 @@ +//code for converting the string in uppercase +let text = "Hello World!"; +let result = text.toUpperCase(); \ No newline at end of file