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/5] 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/5] 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/5] 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/5] Update create CODEOWNERS From 1a0a4aff3bdd9b91c93346b4963c369df2ed998e Mon Sep 17 00:00:00 2001 From: IraHnidets <146118969+IraHnidets@users.noreply.github.com> Date: Thu, 9 Jan 2025 23:35:53 +0200 Subject: [PATCH 5/5] Update create CODEOWNERS