From 302e8d0491da0193bc7cff7f951ac0a7e4184976 Mon Sep 17 00:00:00 2001 From: IraHnidets <146118969+IraHnidets@users.noreply.github.com> Date: Wed, 8 Jan 2025 22:43:19 +0200 Subject: [PATCH 1/6] Create create CODEOWNERS --- .github/create CODEOWNERS | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/create CODEOWNERS diff --git a/.github/create CODEOWNERS b/.github/create CODEOWNERS new file mode 100644 index 00000000..e32a21f5 --- /dev/null +++ b/.github/create CODEOWNERS @@ -0,0 +1 @@ +* @softservedata From a7fa7e0bf52d3405268250513b0194e9f23650d8 Mon Sep 17 00:00:00 2001 From: IraHnidets <146118969+IraHnidets@users.noreply.github.com> Date: Wed, 8 Jan 2025 22:46:24 +0200 Subject: [PATCH 2/6] Create pull_request_template.md --- .github/pull_request_template.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/pull_request_template.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 00000000..378b862f --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,9 @@ +## Describe your changes + +## Issue ticket number and link + +## Checklist before requesting a review +- [ ] I have performed a self-review of my code +- [ ] If it is a core feature, I have added thorough tests +- [ ] Do we need to implement analytics? +- [ ] Will this be part of a product update? If yes, please write one phrase about this update From aa17c10ba1687c942bd8e9b9f9570b97451a5957 Mon Sep 17 00:00:00 2001 From: IraHnidets <146118969+IraHnidets@users.noreply.github.com> Date: Wed, 8 Jan 2025 23:03:34 +0200 Subject: [PATCH 3/6] Create myprog.js --- myprog.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 myprog.js diff --git a/myprog.js b/myprog.js new file mode 100644 index 00000000..2c9c6c0c --- /dev/null +++ b/myprog.js @@ -0,0 +1,14 @@ +function sumNumbers(a, b) { + return a + b; +} + +console.log("Вітаю! Ця програма обчислює суму двох чисел."); + +const number1 = parseFloat(prompt("Введіть перше число:")); +const number2 = parseFloat(prompt("Введіть друге число:")); + + +const result = sumNumbers(number1, number2); + +console.log(`Сума чисел ${number1} і ${number2} дорівнює ${result}.`); +alert(`Сума чисел ${number1} і ${number2} дорівнює ${result}.`); From d12f98ad959b6c8a7f11c7de186897466437123c Mon Sep 17 00:00:00 2001 From: IraHnidets <146118969+IraHnidets@users.noreply.github.com> Date: Thu, 9 Jan 2025 00:07:37 +0200 Subject: [PATCH 4/6] Update create CODEOWNERS From 7ea3b5eeb85fc719a2220bd3842042ca8be60a9f Mon Sep 17 00:00:00 2001 From: IraHnidets <146118969+IraHnidets@users.noreply.github.com> Date: Fri, 10 Jan 2025 19:45:08 +0200 Subject: [PATCH 5/6] Update myprog.js --- myprog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/myprog.js b/myprog.js index 2c9c6c0c..c94a185c 100644 --- a/myprog.js +++ b/myprog.js @@ -2,7 +2,7 @@ function sumNumbers(a, b) { return a + b; } -console.log("Вітаю! Ця програма обчислює суму двох чисел."); +console.log("Вітаю! Ця програма обчислює суму або двох чисел."); const number1 = parseFloat(prompt("Введіть перше число:")); const number2 = parseFloat(prompt("Введіть друге число:")); From c832954c7e26095527f06c72c63ea58c0bc4725c Mon Sep 17 00:00:00 2001 From: IraHnidets <146118969+IraHnidets@users.noreply.github.com> Date: Sat, 11 Jan 2025 12:54:53 +0200 Subject: [PATCH 6/6] Rename create CODEOWNERS to CODEOWNERS --- .github/{create CODEOWNERS => CODEOWNERS} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/{create CODEOWNERS => CODEOWNERS} (100%) diff --git a/.github/create CODEOWNERS b/.github/CODEOWNERS similarity index 100% rename from .github/create CODEOWNERS rename to .github/CODEOWNERS