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. 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