From 8b5b8fc5e9e6127f2bb9c53c20d612f7c0b123eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Engin=20Karata=C5=9F?= Date: Fri, 5 Jan 2024 19:33:12 +0300 Subject: [PATCH 01/11] =?UTF-8?q?[ticket:112]carpma=20fonksyonu=20dosyas?= =?UTF-8?q?=C4=B1=20olu=C5=9Fturuldu?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- carpma.js | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 carpma.js diff --git a/carpma.js b/carpma.js new file mode 100644 index 0000000..c0fe14c --- /dev/null +++ b/carpma.js @@ -0,0 +1,8 @@ +function topla(a, b) { + return { + functionName: "çarpma", + result: a * b, + }; +} + +export {topla} \ No newline at end of file From 14a93e10872b56f364036ebf75911181a895bd7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Engin=20Karata=C5=9F?= Date: Fri, 5 Jan 2024 19:38:35 +0300 Subject: [PATCH 02/11] [ticketno:112]update carpma.js --- carpma.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/carpma.js b/carpma.js index c0fe14c..566b397 100644 --- a/carpma.js +++ b/carpma.js @@ -1,8 +1,8 @@ -function topla(a, b) { +function carpma(a, b) { return { functionName: "çarpma", result: a * b, }; } -export {topla} \ No newline at end of file +export {carpma} \ No newline at end of file From 8783c37343865a6d56e61bc359cc07518f8846d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Engin=20Karata=C5=9F?= Date: Fri, 5 Jan 2024 19:39:03 +0300 Subject: [PATCH 03/11] [ticketno:112]updateindex.html --- index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/index.html b/index.html index 8f563c3..8f234e4 100644 --- a/index.html +++ b/index.html @@ -17,4 +17,5 @@ + From 6c0980c717536e924a65178ed68ee0cac729e00c Mon Sep 17 00:00:00 2001 From: Abdulkerim Date: Fri, 5 Jan 2024 19:44:57 +0300 Subject: [PATCH 04/11] Added carpma.js --- calculator.js | 3 ++- carpma.js | 8 ++++++++ index.html | 1 + 3 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 carpma.js diff --git a/calculator.js b/calculator.js index 767a9be..6651bae 100644 --- a/calculator.js +++ b/calculator.js @@ -1,7 +1,8 @@ import {topla} from "./toplama.js" +import {carpma} from "./carpma.js" -let resultArray = [topla(2, 3)]; +let resultArray = [topla(2, 3),carpma(10,5)]; diff --git a/carpma.js b/carpma.js new file mode 100644 index 0000000..080aef1 --- /dev/null +++ b/carpma.js @@ -0,0 +1,8 @@ +function carpma(a, b) { + return { + functionName: "carpma", + result: a * b, + }; +} + +export {carpma} \ No newline at end of file diff --git a/index.html b/index.html index 8f563c3..8f234e4 100644 --- a/index.html +++ b/index.html @@ -17,4 +17,5 @@ + From bf3e24a28e2a481a2e2f9e6cdebd4056db9b7799 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Engin=20Karata=C5=9F?= Date: Fri, 5 Jan 2024 19:48:15 +0300 Subject: [PATCH 05/11] [ticketno:112]add carpma function calculator.js --- .vscode/settings.json | 3 +++ calculator.js | 7 +++++-- 2 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..6f3a291 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "liveServer.settings.port": 5501 +} \ No newline at end of file diff --git a/calculator.js b/calculator.js index 767a9be..47cdac5 100644 --- a/calculator.js +++ b/calculator.js @@ -1,7 +1,10 @@ import {topla} from "./toplama.js" - +import {carpma} from "./carpma.js" -let resultArray = [topla(2, 3)]; +let resultArray = [ + topla(2, 3), + carpma(10, 5) +]; From e7813a5b197e58fb0533a45e96b147787ce6e775 Mon Sep 17 00:00:00 2001 From: Aykut Date: Fri, 5 Jan 2024 19:59:39 +0300 Subject: [PATCH 06/11] [ticketno:112]updbolme.js --- bolme.js | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 bolme.js diff --git a/bolme.js b/bolme.js new file mode 100644 index 0000000..2e46012 --- /dev/null +++ b/bolme.js @@ -0,0 +1,8 @@ +function bolme(a, b) { + return { + functionName: "bölme", + result: a * b, + }; +} + +export {bolme} \ No newline at end of file From 6249eb7adb7fd524dcbd1ad538f391aabe1c6c15 Mon Sep 17 00:00:00 2001 From: Aykut Date: Fri, 5 Jan 2024 19:59:48 +0300 Subject: [PATCH 07/11] [ticketno:112]updcalculator.js --- calculator.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/calculator.js b/calculator.js index 47cdac5..e359ea9 100644 --- a/calculator.js +++ b/calculator.js @@ -1,9 +1,11 @@ import {topla} from "./toplama.js" import {carpma} from "./carpma.js" +import {bolme} from "./bolme.js" let resultArray = [ topla(2, 3), - carpma(10, 5) + carpma(10, 5), + bolme(15, 5) ]; From 95e0b473d1c0715dfe6b0a2040369e3ae2c27856 Mon Sep 17 00:00:00 2001 From: Aykut Date: Fri, 5 Jan 2024 19:59:56 +0300 Subject: [PATCH 08/11] [ticketno:112]updindex.html --- index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/index.html b/index.html index 8f234e4..1069ab7 100644 --- a/index.html +++ b/index.html @@ -18,4 +18,5 @@ + From 6b42934044e143b98fa76315a0ab39244d9c1b92 Mon Sep 17 00:00:00 2001 From: Aykut Date: Fri, 5 Jan 2024 20:01:35 +0300 Subject: [PATCH 09/11] [ticketno:112]updbolme.js --- bolme.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bolme.js b/bolme.js index 2e46012..ee899bf 100644 --- a/bolme.js +++ b/bolme.js @@ -1,7 +1,7 @@ function bolme(a, b) { return { functionName: "bölme", - result: a * b, + result: a / b, }; } From f8af46629489927d6f29ac2b751a29ce694c4565 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=BCmin=20KAYAASLAN?= Date: Fri, 5 Jan 2024 20:03:26 +0300 Subject: [PATCH 10/11] [ticket:112] bolme islemi eklendi --- bolme.js | 8 ++++++++ calculator.js | 4 +++- index.html | 1 + 3 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 bolme.js diff --git a/bolme.js b/bolme.js new file mode 100644 index 0000000..8a0464c --- /dev/null +++ b/bolme.js @@ -0,0 +1,8 @@ +function bolme(a, b) { + return { + functionName: "bölme", + result: a / b, + }; + } + + export {bolme} \ No newline at end of file diff --git a/calculator.js b/calculator.js index 47cdac5..6003a7e 100644 --- a/calculator.js +++ b/calculator.js @@ -1,9 +1,11 @@ import {topla} from "./toplama.js" import {carpma} from "./carpma.js" +import { bolme } from "./bolme.js"; let resultArray = [ topla(2, 3), - carpma(10, 5) + carpma(10, 5), + bolme(20,4) ]; diff --git a/index.html b/index.html index 8f234e4..1069ab7 100644 --- a/index.html +++ b/index.html @@ -18,4 +18,5 @@ + From f28999a6e45dfe4cdacbf1ceedb865ad44bee5fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denizhan=20=C5=9Eahin?= <95483485+denizzhansahin@users.noreply.github.com> Date: Fri, 5 Jan 2024 20:06:55 +0300 Subject: [PATCH 11/11] Deneme - update bu bir deneme --- carpma.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/carpma.js b/carpma.js index 566b397..9e260b3 100644 --- a/carpma.js +++ b/carpma.js @@ -1,3 +1,4 @@ +//deneme function carpma(a, b) { return { functionName: "çarpma", @@ -5,4 +6,4 @@ function carpma(a, b) { }; } -export {carpma} \ No newline at end of file +export {carpma}