From 1894f184c8cb8ace3383b18ae7673a9d2678eff9 Mon Sep 17 00:00:00 2001 From: Gideon-Buba Date: Wed, 16 Aug 2023 23:52:28 +0100 Subject: [PATCH] Completed Day 3 tasks --- .../03_day_starter/scripts/main.js | 214 +- _operators_date | 3753 +++++++++++++++++ 2 files changed, 3966 insertions(+), 1 deletion(-) create mode 100644 _operators_date diff --git a/03_Day_Booleans_operators_date/03_day_starter/scripts/main.js b/03_Day_Booleans_operators_date/03_day_starter/scripts/main.js index 7762908..e0629d5 100644 --- a/03_Day_Booleans_operators_date/03_day_starter/scripts/main.js +++ b/03_Day_Booleans_operators_date/03_day_starter/scripts/main.js @@ -1 +1,213 @@ -// this is your main.js script \ No newline at end of file +// this is your main.js script + // Day 3 Exercises + // Exercise Level 1 + +// Exercise 1 + const firstName = 'Gideon'; + const lastName = 'Buba'; + let country = 'Nigeria'; + const age = '23'; + let isMarried = false; + let year = 2023; + + console.log(typeof(firstName)) + console.log(typeof(lastName)) + console.log(typeof(country)) + console.log(typeof(age)) + console.log(typeof(isMarried)) + console.log(typeof(year)) + + // Exercise 2 +let string = '10' +let number = 10; + +console.log(string === number) //false + +// Exercise 3 +let decimal = 9.8; +let wholeNumber = 10; + +console.log(parseInt(decimal) === wholeNumber); + +// Exercise 4 + // Truthy value + 'true' + 'Hello World' + 'Gideon' + // Falsy value + 'false' + '0' + 'null' + +// Exercsie 5 +//Choices without console.log() +4 > 3 //true +4 >= 3 //true +4 < 3 //false +4 <= 3 //false +4 == 4 //true +4 === 4 //true +4 != 4 //false +4 !== 4 //false +4 != '4' //true +4 == '4' //false +4 === '4' //false + +//choices with console.log() +console.log(4 > 3) //true +console.log(4 >= 3) //true +console.log(4 < 3) //false +console.log(4 <= 3) //false +console.log(4 == 4) //true +console.log(4 === 4) //true +console.log(4 != 4) //false +console.log(4 !== 4) //false +console.log(4 != '4') //true +console.log(4 == '4') //true +console.log(4 === '4') //false + +let python = 'python'; +let jargon = 'jargon'; + +let pythonLenght = python.length; +let jargonLenght = jargon.length; + +console.log(pythonLenght === jargonLenght) + +// Exercise 6 +//choices without console.log +4 > 3 && 10 < 12 //true +4 > 3 && 10 > 12 //false +4 > 3 || 10 < 12 //true +4 > 3 || 10 > 12 //true +!(4 > 3) //false +!(4 < 3) //true +!(false) //true +!(4 > 3 && 10 < 12) //false +!(4 > 3 && 10 > 12) //true +!(4 === '4') //true + +//choices with console.log() +console.log(4 > 3 && 10 < 12) +//true +console.log(4 > 3 && 10 > 12) +//false +console.log(4 > 3 || 10 < 12) +//true +console.log(4 > 3 || 10 > 12) +//true +console.log(!(4 > 3)) +//false +console.log(!(4 < 3)) +//true +console.log(!(false)) +//true +console.log(!(4 > 3 && 10 < 12)) +//false +console.log(!(4 > 3 && 10 > 12)) +//true +console.log(!(4 === '4')) +//true + +// Exercise 7 +//todays year +let date = new Date(); +console.log(date.getFullYear()) //'2021' + +//todays month +console.log(date.getMonth()) //'8' (January is zero, so December has a value of one less than January.) + +//todays date +console.log(date.getDate()) //'9' + +//todays day +console.log(date.getDay()) //'5' + +//hour as of now +console.log(date.getHours()) //'8' + +//minute as of now +console.log(date.getMinutes()) //'6' + +//seconds from January 1, 1970 to now + + + + // Exercise Level 2 +// Exercise 1 +let base = prompt('Enter base of the triangle: ') +let height = prompt('Enter height of the triangle: ') + +let area = 0.5 * base * height + +console.log(`The area of the triangle is ${area}: `) + +// Exercise 2 +let sideA = prompt('Enter side a:') +let sideB = prompt('Enter side b:') +let sideC = prompt('Enter side c:') + +let perimiter = sideA + sideB + sideC +console.log(`The perimeter of a triangle is ${perimiter}`) + +//Exercise 3 +let length = prompt('Enter lenght:') +let width = prompt('Enter Width:') + +let perimeterOfRectangle = 2 * (length * width) +let areaOfRectangle = length * width * perimeterOfRectangle + +console.log(`The area of the rectangle is ${areaOfRectangle}`) + +// Exercise 4 +let radius = prompt('Enter radius of the circle:') +let pi = Math.PI + +let areaOfCircle = pi * radius * radius +let circumference = 2 * pi * radius + +console.log(`The area of the circle is ${area}: `); +console.log(`The circumfrence of the circle is ${circumference}: `); + +// Exercise 5 +const slope = 2; +const xIntercept = 1; +const yIntercept = -2; + +console.log(`Slope: ${slope}`); +console.log(`X-Intercept: ${xIntercept}`); +console.log(`Y-Intercept: ${yIntercept}`); + +// Exercise 6 +const x1 = 2; +const y1 = 2; +const x2 = 6; +const y2 = 10; + +const slope2 = (y2 - y1) / (x2 - x1); + +console.log("The slope between the points is:", slope); + +// Exercise 7 + +// Exercise 8 + + + + + + + + + + + + + + + + + + + + diff --git a/_operators_date b/_operators_date new file mode 100644 index 0000000..5f1a23a --- /dev/null +++ b/_operators_date @@ -0,0 +1,3753 @@ +commit ab82298d37834646b1c92e22d111bad38a1deec3 (HEAD -> 03_Day_Booleans_operators_date, 02_Day_Data_types) +Author: Gideon-Buba +Date: Tue Aug 15 17:58:17 2023 +0100 + + Completed unfinished tasks for Day 2 + +commit 7de92b8af3720ee43e0a71ecf5e98c73f4228143 (01_Day_Introduction) +Author: Gideon-Buba +Date: Mon Aug 14 23:22:44 2023 +0100 + + Day 2: completed challenge + +commit 80495cefeec606af2c90f793b888ad43898cbbca (origin/01_Day_Introduction) +Author: Gideon-Buba +Date: Mon Aug 14 02:36:17 2023 +0100 + + Day 1: Completed challenge + +commit 65e85f642b1b8e4bd2c2c59cc02ed4c5148ba5fa (origin/master, origin/HEAD, master) +Author: Asabeneh +Date: Sun Apr 2 16:57:26 2023 +0300 + + links has been added + +commit 96397eba660e8e72ae99b860fee67caccc50ec5b +Merge: 7fc6e87 b2e022e +Author: Asabeneh +Date: Sun Apr 2 16:38:27 2023 +0300 + + Merge pull request #730 from alicangunduz/master + + Added 23-30 day + +commit b2e022e477081248843e75698615bda443ed28ed +Author: Ali Can Gündüz +Date: Wed Mar 29 19:12:14 2023 +0300 + + Update 30_day_mini_project_final.md + +commit 0d1cc30419f3ac9efaad4cac513b715b9584f567 +Merge: 3856d15 8f4024e +Author: Ali Can Gündüz +Date: Wed Mar 29 16:19:35 2023 +0300 + + Merge pull request #1 from ubsoydan/main + + Change branch name to 'main' and some other improvements on day 23 + +commit 8f4024e6b7eb0a8b00bd282aaaaaf09d5d4feeb5 +Author: Umut Berkay Soydan +Date: Wed Mar 29 14:18:22 2023 +0300 + + make some improvements + +commit e3ade562bccfb67692ac2cbf16a884906ce3dd6a +Author: Umut Berkay Soydan +Date: Wed Mar 29 13:59:32 2023 +0300 + + make some improvements + +commit 3856d15cfc5682c5aac179384a586eacaf6f252e +Author: Ali Can Gündüz +Date: Sun Mar 26 00:36:09 2023 +0300 + + Added 23-30 day + + Added 23-30 day range for the Turkish translation of the tutorial. + + With this change, I added the 23-30 day range to the Turkish translation of the tutorial. + +commit 7fc6e874ee9611f0fd51cd7660dd88820f451903 +Merge: 2938cc3 7644463 +Author: Asabeneh +Date: Thu Feb 23 00:24:15 2023 +0200 + + Merge pull request #698 from Zearf/master + + Add Vietnamese Day 3 translation + +commit 2938cc3839bda1fb3a7e61770dc9a114fdd5512c +Merge: ffd79e2 8b9f895 +Author: Asabeneh +Date: Thu Feb 23 00:22:15 2023 +0200 + + Merge pull request #664 from Dikendev/master + + Portuguese Day 2 Translation + +commit 7644463c283ea11d1f8406b5f23fc44f2615f0e5 +Author: Zearf <87173635+Zearf@users.noreply.github.com> +Date: Sun Feb 19 23:24:01 2023 +0700 + + Vietnamese day 3 translation + +commit 106f90f080467effe78799bd42b4de76cbdeb82d +Author: Zearf <87173635+Zearf@users.noreply.github.com> +Date: Tue Feb 7 02:07:21 2023 +0700 + + Update 03_booleans_operators_date.md + +commit 8b9f895d40ce3cce7137a315a20615ac8cd4379f +Author: diken.dev +Date: Sat Feb 4 09:45:40 2023 -0300 + + better variable names in portuguese variables + +commit 4f06258a4ba52712c46f74b91babc8c21e906f05 +Author: diken.dev +Date: Sat Feb 4 09:04:11 2023 -0300 + + fixed link pages + +commit e68b8261987e4fcb52417cd45dcd0dfbe7cdfe07 +Author: diken.dev +Date: Sat Feb 4 08:31:23 2023 -0300 + + added day 3 translation and fixed folder names in portuguese + +commit 54d1b87e66367aeae81c56bfe21a01fa906294db +Author: diken.dev +Date: Wed Feb 1 01:31:47 2023 -0300 + + Portuguese translation Day 2 + +commit bffe3993391bedab224c081d3b485a79a083db82 +Author: diken.dev +Date: Tue Jan 31 23:24:53 2023 -0300 + + Portuguese Day 2 translation + +commit ffd79e248d6dcb0c3f63fcc5c96fb0cd43694de4 +Merge: 8430e9f 30eb64c +Author: Asabeneh +Date: Sun Jan 22 14:27:17 2023 +0200 + + Merge pull request #651 from iampopovich/patch-1 + + update RU 1 day readme.md + +commit 30eb64ca1259a13c03cb90e4b80136272903454d +Author: Alex +Date: Sat Jan 21 23:01:51 2023 +0700 + + update RU 1 day readme.md + + appended other available language links + +commit 8430e9ff3c0300dd582e079e17c8b4c3c8002655 +Merge: 41cc836 55e8e61 +Author: Asabeneh +Date: Mon Jan 16 00:02:53 2023 +0200 + + Merge pull request #643 from alicangunduz/master + + addition of day 22 + +commit 55e8e61ee61075a971f995eb15d37a06047a2644 +Author: Ali Can Gündüz +Date: Sat Jan 14 09:17:06 2023 +0300 + + addition of day 22 + + day 22 translated. there have been some minor arrangements for day 21. + +commit 41cc8366769cf669e416ff83acde65e8d613e353 +Merge: 33cf6c0 5aed1a7 +Author: Asabeneh +Date: Sat Jan 14 02:46:23 2023 +0200 + + Merge pull request #640 from alicangunduz/master + + added turkish language translation for day 21 + +commit 5aed1a7f48204215c4c38f22ab82cda4f19aa667 +Author: Ali Can Gündüz +Date: Wed Jan 11 05:43:01 2023 +0300 + + added turkish language translation for day 21 + +commit 33cf6c074d263cb60a9103c9ee24a7045b06e02c +Merge: f03fdcd 3f31ef2 +Author: Asabeneh +Date: Sun Dec 11 02:10:09 2022 +0200 + + Merge pull request #604 from fraltnn/patch-2 + + fix mistakes and typos in day 3 russian localization + +commit f03fdcddbdcf9bda244b3bdacdff0863fbdb0535 +Merge: 5a06eee 267a931 +Author: Asabeneh +Date: Sun Dec 11 02:09:47 2022 +0200 + + Merge pull request #605 from fraltnn/patch-3 + + typos day 2 russian localization + +commit 5a06eee432a3a194e618b46f1c52b5573eb1b64d +Merge: c2b3324 5a6fc05 +Author: Asabeneh +Date: Sun Dec 11 02:09:24 2022 +0200 + + Merge pull request #611 from guvenkarabulut/day-11-translated-to-turkish + + Day 11 translated to turkish + +commit 5a6fc05e51ac014dfbe6ea9da51aacd51c824746 +Merge: a4a9f7f c2b3324 +Author: Güven Karabulut <56564068+guvenkarabulut@users.noreply.github.com> +Date: Fri Dec 9 08:10:05 2022 +0300 + + Merge branch 'Asabeneh:master' into day-11-translated-to-turkish + +commit a4a9f7f550c49c216456063f4432014e2549a9ba +Author: Güven Karabulut <56564068+guven07@users.noreply.github.com> +Date: Fri Dec 9 08:04:57 2022 +0300 + + Day 11 sucsefully translated to Turkish + +commit c2b33248cb28505ac8ae714ffbfde2573d0486e7 +Merge: eb66f6b 437ff29 +Author: Asabeneh +Date: Thu Dec 8 22:35:58 2022 +0200 + + Merge pull request #606 from fraltnn/patch-4 + + fix mistakes in day 4 russian localization + +commit 437ff2937bf8ab406364fed7f0dbd5e74b3bed2a +Author: fraltnn <112445623+fraltnn@users.noreply.github.com> +Date: Sun Dec 4 21:05:42 2022 +0300 + + Update 04_day_conditionals.md + +commit ee1414c30900cb087a344ccb0061100138253f43 +Author: fraltnn <112445623+fraltnn@users.noreply.github.com> +Date: Sun Dec 4 20:27:02 2022 +0300 + + Update 04_day_conditionals.md + +commit 112ab39ac550ce1b7aedfa31710c2e06380af9bc +Author: fraltnn <112445623+fraltnn@users.noreply.github.com> +Date: Sun Dec 4 20:17:16 2022 +0300 + + Update 04_day_conditionals.md + +commit 9535eb94d5356f177a6895416512c3307d8920cb +Author: fraltnn <112445623+fraltnn@users.noreply.github.com> +Date: Sun Dec 4 19:35:05 2022 +0300 + + fix mistakes in day 4 russian localization + +commit 267a9314d3d1353fc8f62e123a47bbaf354876d7 +Author: fraltnn <112445623+fraltnn@users.noreply.github.com> +Date: Sat Dec 3 23:12:09 2022 +0300 + + typos day 2 russian localization + +commit 3f31ef29b545e93e29a22bc19d5ea59faf2247ad +Author: fraltnn <112445623+fraltnn@users.noreply.github.com> +Date: Sat Dec 3 23:08:03 2022 +0300 + + fix mistakes and typos in day 3 russian localization + +commit eb66f6b1f535c15359e3846d2062feea9cce6bb3 +Merge: 912bcfc f3699f6 +Author: Asabeneh +Date: Sat Dec 3 16:10:28 2022 +0200 + + Merge pull request #598 from lucas-mch/master + + Created and translated 01_Day_introduction for Portuguese + +commit 912bcfc11701470bbca5505e98e63bed35fbd862 +Merge: 643f3c4 ecf5618 +Author: Asabeneh +Date: Sat Dec 3 16:08:35 2022 +0200 + + Merge pull request #602 from fraltnn/patch-1 + + fix mistakes in day 2 russian localization + +commit ecf561820fb71c8a576d0ee5610d3e3ba68f79c6 +Author: fraltnn <112445623+fraltnn@users.noreply.github.com> +Date: Sat Dec 3 01:40:00 2022 +0300 + + Update 02_day_data_types.md + + Строка 696 "начинается ли строка с указанной подстроки", предположу что тут опечатка , основываясь на оригинале и смысле метода. + + endsWith: it takes a substring as an argument and it checks if the string ends with that specified substring. It returns a boolean(true or false) + +commit f3699f64dba60b88c8ac71c114acd7f496df99f4 +Author: Lucas Machado de Souza +Date: Thu Dec 1 16:14:42 2022 -0300 + + Portuguese translation 01_Day_introduction + +commit c09bdd921738ccf9b58d07c0b54273271b48739c +Author: Lucas Machado de Souza +Date: Thu Dec 1 16:13:58 2022 -0300 + + Portuguese translantion for 01_Day_introduction + +commit 4ab196807f44a772efe4ff3b69a86aba9b1a0ce5 +Author: Lucas Machado de Souza +Date: Thu Dec 1 06:28:37 2022 -0300 + + Copy from 01_Day_introduction to Portuguese folder + +commit 643f3c452eccd7febc5408b070f023b7b7d37e62 +Merge: 26562ad b8a7179 +Author: Asabeneh +Date: Mon Nov 28 21:15:02 2022 +0200 + + Merge pull request #597 from guven07/day10-translate-turkish + + Day10 translate turkish + +commit b8a7179df1b8cfff5e678c608cb3bbccd447b717 +Author: Güven Karabulut <56564068+guven07@users.noreply.github.com> +Date: Mon Nov 28 21:40:08 2022 +0300 + + Day 10 translated to Turkish + +commit 464c456cac914bd9de12bc2accdc5e736d0e92c1 +Author: Güven Karabulut <56564068+guven07@users.noreply.github.com> +Date: Mon Nov 28 21:37:34 2022 +0300 + + Update 10_day_Sets_and_Maps.md + +commit 7ca2f847b4827eb1f47c8f633bfd6474050fdbec +Author: Güven Karabulut <56564068+guven07@users.noreply.github.com> +Date: Mon Nov 28 21:36:58 2022 +0300 + + Day 10 Translate to Turkish + +commit 6b52d6e91b83fe7783e89b9d1eac3c40fb9e136a +Author: Güven Karabulut <56564068+guven07@users.noreply.github.com> +Date: Mon Nov 28 21:35:24 2022 +0300 + + Update 10_day_Sets_and_Maps.md + +commit 55fcc9781de5e1ec10efa20359fe1d51e6c08c47 +Author: Güven Karabulut <56564068+guven07@users.noreply.github.com> +Date: Mon Nov 28 21:34:19 2022 +0300 + + Update 10_day_Sets_and_Maps.md + +commit 0492b9d622412bd6500fe43ebee129fdb70fe58e +Author: guven07 +Date: Mon Nov 28 21:28:43 2022 +0300 + + Day 10 Translate into Turkish + +commit 26562ad8e90bbcc07d9ab51c588481eb6c8e128d +Merge: 367bc34 e2cd117 +Author: Asabeneh +Date: Wed Nov 23 00:36:56 2022 +0200 + + Merge pull request #586 from hsynalv/master + + day 9 translated + +commit 367bc342c257c205ab466c17a0734b2d15576703 +Merge: a803660 47051ab +Author: Asabeneh +Date: Wed Nov 23 00:35:39 2022 +0200 + + Merge pull request #588 from Dikendev/master + + day 2 portuguese translation + +commit 47051abec2e0fbfaa24bffc442f4042f369c5726 +Author: diken.dev +Date: Tue Nov 22 17:05:50 2022 -0300 + + day 2 portuguese translation + +commit e2cd117ee1ae106d664c658cdf98d4376cde750d +Author: Hüseyin Alav <73330164+hsynalv@users.noreply.github.com> +Date: Tue Nov 22 20:11:00 2022 +0300 + + . + +commit ab79c64b3ef09cb67b32371eadca6fc108686bb4 +Author: Hüseyin Alav <73330164+hsynalv@users.noreply.github.com> +Date: Tue Nov 22 20:08:51 2022 +0300 + + day 9 translated + +commit d560f17c644b552ea60cf9d391dc50e9476ef01a +Author: diken.dev +Date: Wed Nov 16 23:39:37 2022 -0300 + + day 2 portuguese translation + +commit 76cf3784c60019f7e28993de4d5033a7b63148d8 +Merge: 0351585 a803660 +Author: Diego Kennedy Guimarães Barros <103402889+Dikendev@users.noreply.github.com> +Date: Fri Nov 11 21:33:48 2022 -0500 + + Merge branch 'Asabeneh:master' into master + +commit a80366061eb1479611387364be60462b0893f08c +Merge: 290acc8 6071846 +Author: Asabeneh +Date: Sat Nov 12 03:00:21 2022 +0200 + + Merge pull request #570 from 3JlOy-PYCCKUi/ru-day1 + + fix mistakes and typos in day 1 russian localization + +commit 290acc85cd0f327e8b12fee3ec521a55ad2e4bf0 +Merge: 0053893 f5a9be5 +Author: Asabeneh +Date: Sat Nov 12 02:59:54 2022 +0200 + + Merge pull request #569 from 3JlOy-PYCCKUi/master + + fix mistakes and typos in day 2 russian localization + +commit 0053893602c4ff6ddb6a07149e7ac781ccf04ba5 +Merge: 298bc56 ef20617 +Author: Asabeneh +Date: Sat Nov 12 02:59:25 2022 +0200 + + Merge pull request #571 from 3JlOy-PYCCKUi/ru-day3 + + fix mistakes and typos in day 3 russian localization + +commit ef206177ebce16d76cb86817805494ff71cc5055 +Author: 3JlOy_PYCCKUI <3jl0y_pycckui@riseup.net> +Date: Fri Nov 11 17:59:09 2022 +0300 + + fix mistakes and typos in day 3 russian localization + +commit 60718460fa55778329b2a3c7536153681b566701 +Author: 3JlOy_PYCCKUI <3jl0y_pycckui@riseup.net> +Date: Fri Nov 11 17:32:17 2022 +0300 + + fix mistakes and typos in day 1 russian localization + +commit f5a9be50e12ce53e8f75c5a0adc3a808129bcc9c +Author: 3JlOy_PYCCKUI <3jl0y_pycckui@riseup.net> +Date: Fri Nov 11 17:19:14 2022 +0300 + + fix mistakes and typos in day 2 russian localization + +commit 0351585b1a51a192cbcddc6b0522343db1f6b1f3 +Author: diken.dev +Date: Tue Nov 8 23:46:03 2022 -0300 + + day 2 portuguese translation + +commit 298bc56ac8bd8f5cb7884875907bc83dd5046d5c +Merge: c24de4c 2bd214e +Author: Asabeneh +Date: Tue Nov 1 21:14:47 2022 +0200 + + Merge pull request #548 from Dikendev/master + + day 1 portuguese translation + +commit 2bd214e6cbb25c09f19c17edea9a8ab246a3e0ac +Author: diken.dev +Date: Tue Nov 1 16:09:15 2022 -0300 + + day 1 portuguese translation + +commit c24de4c3932027d11c1d77bf29b06474039a2f41 +Merge: bef67f0 30496ad +Author: Asabeneh +Date: Sun Oct 30 23:33:00 2022 +0200 + + Merge pull request #547 from Dikendev/master + + link to portuguese translation + +commit 30496ad801bb5130323ab4d31769c849f5d2dd89 +Author: diken.dev +Date: Sat Oct 29 01:24:12 2022 -0300 + + fixed img and links, portugueses translation + +commit 2d6561cbdf7eff217cc52020d5b41177a17e1ce8 +Author: diken.dev +Date: Fri Oct 28 17:14:47 2022 -0300 + + added Portuguese language link to main readme and portuguese translation + +commit bef67f08b0857d9f1089e6a37896b464bab744f5 +Merge: 1c0ea78 ee7527e +Author: Asabeneh +Date: Thu Oct 27 23:43:14 2022 +0300 + + Merge pull request #544 from Dikendev/master + + Portuguese Translation + +commit f2e35f838acbabb0e9f250ec5c4ffe0d4e3c0f8c +Author: diken.dev +Date: Thu Oct 27 12:59:37 2022 -0300 + + Portugese translation + +commit ee7527e26aee75f3141805e66ed8831a873e9a95 +Author: diken.dev +Date: Wed Oct 26 02:07:57 2022 -0300 + + Portuguese Translation + +commit d10932c12ffac4718b9691dc235e1dff7a3707b4 +Author: diken.dev +Date: Mon Oct 24 23:30:02 2022 -0300 + + portuguese translation + +commit 01f3b508c87e7f86025876f11e274edde60984df +Author: diken.dev +Date: Mon Oct 24 23:21:32 2022 -0300 + + portuguese translation + +commit fc9719cd27fb3709acad161e4e2d154ec01f2064 +Author: Zearf +Date: Thu Oct 20 01:51:44 2022 +0700 + + Update 03_booleans_operators_date.md + +commit 37b3a1abec1a7681d2c75760173d438bef0ec9e1 +Author: Zearf +Date: Thu Oct 20 01:49:27 2022 +0700 + + Create 03_booleans_operators_date.md + +commit 1c0ea781884f89f847520fd2f7f34955fd79f7ab +Merge: cf35af9 de038c3 +Author: Asabeneh +Date: Tue Oct 4 00:57:32 2022 +0300 + + Merge pull request #521 from EmmanuelArenas/spanish-translation + + Spanish translation + +commit de038c3736c530dc5ff26bec0757f5eec8e0e30d +Author: EmmanuelArenas +Date: Sun Oct 2 22:54:53 2022 -0500 + + Correction of days + +commit 0f47b7c8f26578851c74c9e8672c3033ee3361ef +Author: EmmanuelArenas +Date: Sun Oct 2 22:35:30 2022 -0500 + + Spanish translation day 30 of 30 + +commit 19ddac469d354e1d31d799256200da6a77620269 +Author: EmmanuelArenas +Date: Sun Oct 2 22:14:40 2022 -0500 + + Spanish translation day 29 of 30 + +commit f69c0f537f6c157783a818bcd13f79c06e614459 +Author: EmmanuelArenas +Date: Sun Oct 2 21:39:42 2022 -0500 + + Spanish translation day 28 of 30 + +commit bfc07fbcf1a4bb71a55f3bb0551f393acb78c9f8 +Author: EmmanuelArenas +Date: Sun Oct 2 21:31:23 2022 -0500 + + Spanish translation day 27 of 30 + +commit 51d96f2047d5dfa54fc8830c36fbc4eaf28a857a +Author: EmmanuelArenas +Date: Sun Oct 2 21:20:21 2022 -0500 + + Spanish translation day 26 of 30 + +commit 40cf1f1518b3aaa32eda110c8faed02d37ca0acf +Author: EmmanuelArenas +Date: Sun Oct 2 21:12:58 2022 -0500 + + Spanish translation day 25 of 30 + +commit 3e2251100c2bc52b68c4b2a3bb267797079f4687 +Author: EmmanuelArenas +Date: Sun Oct 2 21:03:22 2022 -0500 + + Spanish translation day 24 of 30 + +commit 31af27e90b9b77acc2ad87e2f27d84d14bd776df +Author: EmmanuelArenas +Date: Sun Oct 2 20:51:08 2022 -0500 + + Spanish translation day 23 of 30 + +commit 424fc695df0cb2af8515ffc9436d41551399ff83 +Author: EmmanuelArenas +Date: Sun Oct 2 20:01:17 2022 -0500 + + Spanish translation day 22 of 30 + +commit c2226664bdc9cac0e425286fac7a4c42a2ac3e34 +Author: EmmanuelArenas +Date: Sun Oct 2 18:44:04 2022 -0500 + + Spanish translation day 21 of 30 + +commit cf35af992cab0fa98b28ca4bd27de9b29cde6be3 +Merge: 348fac4 debd7b2 +Author: Asabeneh +Date: Thu Sep 29 18:35:58 2022 +0300 + + Merge pull request #516 from EmmanuelArenas/spanish-translation + + Spanish translation + +commit 348fac404423e399aaee5d8b532cdfcc62f4a493 +Merge: e2587d1 ee36501 +Author: Asabeneh +Date: Thu Sep 29 18:31:51 2022 +0300 + + Merge pull request #515 from yigittosun/master + + Translate 14th and 15th Days to Turkish + +commit ee365019a5ec053c0bf17d6984741c122b6fdcd2 +Author: Yiğit Tosun +Date: Thu Sep 29 10:23:46 2022 +0300 + + Recover deleted 14_day_Error_Handling file + +commit 1df4102b871c555e0be30a0fc3e8d2865bdeb25f +Author: Yiğit Tosun +Date: Thu Sep 29 10:15:34 2022 +0300 + + Translate '14_day_error_handling' to Turkish + +commit 95cfb3cd9d6c3608c257695c21cb931ffc86d209 +Author: Yiğit Tosun +Date: Thu Sep 29 10:14:10 2022 +0300 + + Delete 14_day_error_handling.md + +commit 6e4332d52b1059560e2773d99f13c6c4c51fdac9 +Author: Yiğit Tosun +Date: Thu Sep 29 10:09:57 2022 +0300 + + Translate '14_day_error_handling' to Turkish + +commit 852a72f8a036a460bde5bdcde7b20b8fcf3edfc7 +Author: Yiğit Tosun +Date: Mon Sep 26 13:32:44 2022 +0300 + + Fix image path in header + +commit 112cb41468f2053698f6e184dea09e46ee3d5c0c +Author: Yiğit Tosun +Date: Mon Sep 26 13:29:49 2022 +0300 + + Translate 15_Day_Classes to Turkish + +commit debd7b2f6b7da1554153aa641f8c2c8a388118e2 +Author: EmmanuelArenas +Date: Mon Sep 26 02:34:24 2022 -0500 + + Spanish translation day 20 of 30 + +commit 44e4782cb907e156e5d43b16839f20164c2214b8 +Author: EmmanuelArenas +Date: Mon Sep 26 01:24:16 2022 -0500 + + Spanish translation day 19 of 30 + +commit 31a0721d0760e046012ffa9ba00ae6c4eb9969ac +Author: EmmanuelArenas +Date: Mon Sep 26 01:00:26 2022 -0500 + + Spanish translation day 18 of 30 + +commit e2587d1e6d561668f1083800b18de540a31aaf48 +Merge: fb18dc6 f6e2e5d +Author: Asabeneh +Date: Mon Sep 19 17:27:40 2022 +0300 + + Merge pull request #510 from EmmanuelArenas/spanish-translation + + Spanish translation + +commit f6e2e5da00db5056c5d9112f3dc6cfe46eb1ddc3 +Author: EmmanuelArenas +Date: Mon Sep 19 00:15:43 2022 -0500 + + Spanish translation day 17 of 30 + +commit a2c3ab672316e4e0a98312b34349c690181c8de7 +Author: EmmanuelArenas +Date: Sun Sep 18 23:26:10 2022 -0500 + + Spanish translation day 16 of 30 + +commit b7574bd596835e31279074cbb4fccc4b9a3b37c5 +Author: EmmanuelArenas +Date: Sun Sep 18 21:34:13 2022 -0500 + + Spanish translation day 15 of 30 + +commit fb18dc672dccb990178a4315de9b5b738f5ba9c4 +Merge: 0b926bb 752e513 +Author: Asabeneh +Date: Wed Sep 14 19:54:39 2022 +0300 + + Merge pull request #507 from EmmanuelArenas/spanish-translation + + Spanish translation + +commit 752e513074a80b04a9ff0f5557d15fcc6e1e7e74 +Author: EmmanuelArenas +Date: Fri Sep 9 20:40:50 2022 -0500 + + Spanish translation day 14 of 30 + +commit e9ea627c2bec5fd8835521b7346304f489782d2d +Author: EmmanuelArenas +Date: Fri Sep 9 20:11:48 2022 -0500 + + Spanish translation day 13 of 30 + +commit 1ab1f3ecb69984189ae429a1eaa1bc95472ecf7e +Author: EmmanuelArenas +Date: Fri Sep 9 18:46:33 2022 -0500 + + Spanish translation day 12 of 30 + +commit 0b926bb8f9f6cf9d9d4b1d469a6c819c10ab35c9 +Merge: 270b352 790bc7f +Author: Asabeneh +Date: Sat Sep 10 00:04:56 2022 +0300 + + Merge pull request #500 from EmmanuelArenas/spanish-translation + + Spanish translation day 10 of 30 + +commit 790bc7f860387a0c5c96410514b31f58850aab27 +Author: EmmanuelArenas +Date: Thu Sep 8 22:47:42 2022 -0500 + + Spanish translation day 11 of 30 + +commit d880c532ddec2ca5f55da682d63227abffaf399f +Author: EmmanuelArenas +Date: Thu Sep 8 19:31:15 2022 -0500 + + Spanish translation day 10 of 30 + +commit 270b3524038cbeff74ac838c0e25f88e934b88a3 +Merge: 1e68a81 dc558dd +Author: Asabeneh +Date: Mon Sep 5 23:06:28 2022 +0300 + + Merge pull request #495 from EmmanuelArenas/spanish-translation + + Spanish translation day 8 and 9 + +commit dc558dd9b12d37d1181ce4f6f341a55b0e6e04f1 +Author: EmmanuelArenas +Date: Sun Sep 4 23:28:08 2022 -0500 + + Spanish translation day 9 of 30 + +commit 3c7ac9bbbc4c9bedb256b9635f29c98b649b7d1f +Author: EmmanuelArenas +Date: Sat Sep 3 23:23:39 2022 -0500 + + Spanish translation day 8 of 30 + +commit 1e68a81fe9aa79a1f69f53e03d51fd2c4e3bfe4f +Merge: e71779f 97087bc +Author: Asabeneh +Date: Thu Sep 1 21:49:23 2022 +0300 + + Merge pull request #491 from yigittosun/master + + Translate 16_day_JSON to Turkish + +commit e71779f3a7b6765621a9bf0b95ef0b4099fa5cf4 +Merge: 4e5ccf5 64617ad +Author: Asabeneh +Date: Thu Sep 1 21:48:51 2022 +0300 + + Merge pull request #490 from EmmanuelArenas/spanish-translation + + Spanish translation day 6 of 30 + +commit 97087bcdb14ab8f887dc23c4568893ad5e478999 +Author: Yiğit Tosun +Date: Thu Sep 1 09:54:41 2022 +0300 + + Translate 16_day_JSON to Turkish + +commit 64617ad348ce1b887cda42283985b6d0fa150052 +Author: EmmanuelArenas +Date: Wed Aug 31 19:49:45 2022 -0500 + + Spanish translation day 7 of 30 + +commit 2df4042e3b31dc53a35308146df64af400e9cd04 +Author: EmmanuelArenas +Date: Fri Aug 26 17:20:28 2022 -0500 + + Spanish translation day 6 of 30 + +commit 4e5ccf57e1cf3d77b6c5f158525459e775311549 +Merge: 7782c52 1c490c2 +Author: Asabeneh +Date: Fri Aug 26 17:44:14 2022 +0300 + + Merge pull request #458 from EmmanuelArenas/spanish-translation + + Spanish translation day 3 of 30 + +commit 1c490c24f1dcd8d6da643f8e3f55daf56a9e323a +Author: EmmanuelArenas +Date: Thu Aug 25 21:34:51 2022 -0500 + + Spanish translation day 5 of 30 + +commit 7782c525e0aa35db79c365e0cfaf2527150f5358 +Merge: 4ab3bac 5ac7663 +Author: Asabeneh +Date: Thu Aug 25 02:56:50 2022 +0300 + + Merge pull request #468 from yigittosun/master + + Translate 17_day_web_stroges to Turkish + +commit 5ac76634d26749afc67d326dbd962bcefeeddebb +Author: Yiğit Tosun +Date: Wed Aug 24 09:47:58 2022 +0300 + + Translate 17_day_web_stroges to Turkish + +commit 13a5ee2860ac54d3bf969f436a5a3978d3a5510a +Author: EmmanuelArenas +Date: Tue Aug 23 14:51:12 2022 -0500 + + Spanish translation day 4 of 30 + +commit b19cb7ddba175e3e78c5ae7acd68bb8f632053fe +Author: EmmanuelArenas +Date: Sun Aug 21 21:12:20 2022 -0500 + + Spanish translation day 3 of 30 + +commit 4ab3bac14fa42c540942976874828ed40844e54e +Merge: 476158a 6ffb5ea +Author: Asabeneh +Date: Thu Aug 18 13:21:06 2022 +0300 + + Merge pull request #452 from yigittosun/master + + Translate 20_Day_Writing_clean_codes to Turkish + +commit 6ffb5ea879639124693b3a373eba7a402256931d +Author: Yiğit Tosun +Date: Thu Aug 18 13:05:26 2022 +0300 + + Add 20_Day_writing_clean_code file on project + +commit 7eca5b87f0a06941c1c0e716db3d9b0762ad3e33 +Author: Yiğit Tosun +Date: Thu Aug 18 11:40:52 2022 +0300 + + Delete 20_Day_Writing_clean_codes.md + +commit 69e899b2d1c4a923da1d3ae506e4a71fd7b2f06b +Author: Yiğit Tosun +Date: Thu Aug 18 11:35:39 2022 +0300 + + Edit 20th page router link in 19th page + +commit 1201626e3b9e02d3ac8c9255df1474ab9defd191 +Author: Yiğit Tosun +Date: Thu Aug 18 11:29:06 2022 +0300 + + Fix page link bug on 20th page + +commit 2014f6d23d8ce687a2cc7fdcb4674d18f14ac3b9 +Author: Yiğit Tosun +Date: Thu Aug 18 11:16:47 2022 +0300 + + Edit file name in 20th Day + +commit d8c570338f8790b27cd9f7adfa15c719aa0f89a4 +Author: Yiğit Tosun +Date: Thu Aug 18 11:11:04 2022 +0300 + + Edit back page link anf file name on 20th day + +commit 523719a43a218d97260af9003e9d3a318f2a8f4f +Author: Yiğit Tosun +Date: Thu Aug 18 10:50:39 2022 +0300 + + Translate 20_Day_Writing_Clean_Code document to Turkish + +commit 476158ab1939b1ef43d101153aba034cbbad0d57 +Merge: f0f1e66 dfc09e0 +Author: Asabeneh +Date: Fri Aug 12 09:46:01 2022 +0300 + + Merge pull request #444 from yigittosun/master + + Translate 19_Day_Closures to Turkish + +commit dfc09e0539b6e609217fcb8296ee8584fc1defc9 +Author: Yiğit Tosun +Date: Mon Aug 8 09:46:49 2022 +0300 + + Translate 19_Day_Closures to Turkish + +commit f0f1e662aea8d8a5b9636590db79ed8794df58f9 +Merge: 4e73681 654512b +Author: Asabeneh +Date: Sat Jul 30 14:22:30 2022 +0300 + + Merge pull request #423 from hsynalv/master + + day 7 bugi fixed and day 8 translated to Turkish + +commit 4e736814e027b8aa07a7672516b2d224295b1b9e +Merge: e4af287 55728e2 +Author: Asabeneh +Date: Sat Jul 30 14:21:56 2022 +0300 + + Merge pull request #422 from yigittosun/master + + Translated 18_day_promises + +commit 654512b2a5bf44058d092372509e09080a12b2fd +Author: Hasan Hüseyin Alav <73330164+hsynalv@users.noreply.github.com> +Date: Fri Jul 29 14:34:26 2022 +0300 + + day 8 translated to Turkish + +commit 55728e210bd5c79c39e504d05330bdf7819fc695 +Author: Yiğit Tosun +Date: Thu Jul 28 16:20:00 2022 +0300 + + Delete 06_day_loops.md + +commit 2e4084bae551824008fecabd252b53dfcc225f37 +Author: Yiğit Tosun +Date: Thu Jul 28 16:07:51 2022 +0300 + + Change title name + +commit 4e3d9634c5e9ba0e5b20400deb9a581638b51c2d +Merge: cd246e9 e4af287 +Author: Yiğit Tosun +Date: Thu Jul 28 16:03:36 2022 +0300 + + Merge branch 'Asabeneh:master' into master + +commit cd246e91a9ec10f8eee0d28868dc4dbcc6f3f403 +Author: Yiğit Tosun +Date: Thu Jul 28 16:02:44 2022 +0300 + + Translate 18_day_promises to Turkish + +commit 0e38ae49324c1cae41ee3731461c3063b0557d3b +Author: Hasan Hüseyin Alav <73330164+hsynalv@users.noreply.github.com> +Date: Mon Jul 25 23:42:44 2022 +0300 + + day 7 redirect reference bug fixed + +commit 5bc9ef910c3d0a8eb8b665a67823ba9e7381fea0 +Author: Hasan Hüseyin Alav <73330164+hsynalv@users.noreply.github.com> +Date: Mon Jul 25 23:39:02 2022 +0300 + + day 6 redirect reference bug fixed + +commit cd126595f3d5f3fa7bec628777009fea0a729969 +Author: Hasan Hüseyin Alav <73330164+hsynalv@users.noreply.github.com> +Date: Mon Jul 25 23:37:05 2022 +0300 + + day 7 grammer bugs fixed. + +commit e4af287d59bffa3d2aa0dc4229797e76f8038434 +Merge: 9533bdb 596599f +Author: Asabeneh +Date: Mon Jul 25 14:58:20 2022 +0300 + + Merge pull request #416 from hsynalv/master + + day 7 translated to Turkish + +commit b03ff29d0f46682078ad933256bce4b7ec0fb5e4 +Merge: 6db0f3d 9533bdb +Author: Yiğit Tosun +Date: Mon Jul 25 09:29:55 2022 +0300 + + Merge branch 'Asabeneh:master' into master + +commit 596599fdf59a83aefcc94533fe52429af82a4386 +Author: Hasan Hüseyin Alav <73330164+hsynalv@users.noreply.github.com> +Date: Mon Jul 25 00:21:01 2022 +0300 + + day 7 translated to Turkish + +commit 9533bdb436362548fab51120ff96f653e77eca10 +Merge: 1768d43 8691736 +Author: Asabeneh +Date: Sun Jul 24 19:04:06 2022 +0300 + + Merge pull request #415 from hsynalv/master + + day 6 translated to Turkish + +commit 869173619e40491f51d854d9c60be1b856ce01ba +Author: Hasan Hüseyin Alav <73330164+hsynalv@users.noreply.github.com> +Date: Sun Jul 24 17:29:11 2022 +0300 + + redirect bug fixed + +commit 5e715f6302dbddd1d67e2448e5f690b2a9d2fab8 +Author: Hasan Hüseyin Alav <73330164+hsynalv@users.noreply.github.com> +Date: Sun Jul 24 16:55:28 2022 +0300 + + day 6 translated to Turkish + + day 6 translated to Turkish + +commit 6db0f3d91451a633b0893d019e5885233b829d3e +Author: Yiğit Tosun +Date: Sun Jul 24 13:34:39 2022 +0300 + + Change image path + +commit 56eb2f19de4613e5f93468a5f63171a0ee96c736 +Author: Yiğit Tosun +Date: Sun Jul 24 13:31:08 2022 +0300 + + Add links for paragraph + +commit 9c94eb537957f08de6df47f751ed4fd2efd7d9c9 +Author: Yiğit Tosun +Date: Sun Jul 24 12:51:20 2022 +0300 + + Translate 06_day_loops to Turkish + +commit 1768d439e30e91f8fda1ec4cbb6cba87449fcdce +Merge: ec08245 3c992f4 +Author: Asabeneh +Date: Tue Jul 12 00:36:37 2022 +0300 + + Merge pull request #399 from Kadiralpcil/master + + 05_Day_Arrays Translated to Turkish + +commit 3c992f4c93c1d130b7758fdae553c8ca02f374e0 +Author: Kadiralpcil +Date: Sun Jul 10 00:58:39 2022 +0300 + + spelling updated + +commit f88921bda815395a9715ea94d584d18f788566d1 +Author: Kadiralpcil +Date: Sun Jul 10 00:42:34 2022 +0300 + + Day 5 translated to turkish + +commit ec0824543b3180f3bf98ed30e25e905ee7df71f0 +Merge: 646c778 09b1937 +Author: Asabeneh +Date: Fri Jun 24 12:19:22 2022 +0300 + + Merge pull request #384 from CampaniaGuy/master + + Day 15-30 Italian language support + +commit 09b1937368581f2cb376a035fec2585f923f5731 +Author: CampaniaGuy +Date: Thu Jun 23 17:42:41 2022 +0200 + + Added Day 15-30 Italian language support + + Added Day 8-14 Italian language support. + Fixes and little changes on previous days. + +commit 646c7781ae98567402a32e71538c655a66d06e73 +Merge: a63597b 026a7cf +Author: Asabeneh +Date: Tue Jun 21 00:35:40 2022 +0300 + + Merge pull request #378 from CampaniaGuy/master + + Day 8-14 Italian language support + +commit 026a7cfc54ab287644c37115b53e9934e701fc8d +Author: CampaniaGuy +Date: Mon Jun 20 11:33:16 2022 +0200 + + Added Day 8-14 Italian language support + + Added Day 8-14 Italian language support and little corrections to previous files. + Added italian language link to "main" readMe.md + +commit a63597bc657b7018e28f4d6e153f2d21627d8a38 +Merge: e5b1542 bd3d962 +Author: Asabeneh +Date: Sun Jun 12 19:38:52 2022 +0300 + + Merge pull request #365 from CampaniaGuy/master + + Day 1-7 Italian language + +commit bd3d962f9bab38ecbb7b4b746b9eff1f4eee9bcc +Author: CampaniaGuy +Date: Sun Jun 12 17:39:30 2022 +0200 + + Added Day 1-7 Italian language support + + Lessons from day 1 to day 7 have been translated in Italian for one more language support. + +commit e5b1542a8d8724faae67aa845774c36c1bc3f760 +Merge: 2d2baae 48e7e2c +Author: Asabeneh +Date: Sun Jun 5 21:38:39 2022 +0300 + + Merge pull request #355 from thealiyasar/master + + Update 03_day Create 04_day + +commit 48e7e2c30fb8e61e5479352ba1aa95f7d07eddc4 +Author: Ali Yaşar <43387306+thealiyasar@users.noreply.github.com> +Date: Sun Jun 5 01:26:17 2022 +0300 + + Create 04_day_conditionals.md + +commit caa748bd885137958085ce7a6ce0b6d1c8d9f92f +Author: Ali Yaşar <43387306+thealiyasar@users.noreply.github.com> +Date: Thu Jun 2 19:17:17 2022 +0300 + + Update 03_booleans_operators_date.md + +commit 2d2baae288d5ffeefcb696862993099dee0f9530 +Merge: 9504d35 2a87b59 +Author: Asabeneh +Date: Thu Jun 2 17:30:11 2022 +0300 + + Merge pull request #350 from thealiyasar/master + + Day 2 update images folder path & Day 3 Turkish Translator + +commit 2a87b5954046d5cf1b69475792be1ce283fe2ca3 +Author: Ali Yaşar <43387306+thealiyasar@users.noreply.github.com> +Date: Mon May 30 03:41:15 2022 +0300 + + Create 03_booleans_operators_date.md + +commit 8cf986fe55e02ef2f7226b1276e777ff1ce77251 +Author: Ali Yaşar <43387306+thealiyasar@users.noreply.github.com> +Date: Mon May 30 01:49:45 2022 +0300 + + Update 02_day_data_types.md + +commit 9504d35445723e9dccf4760700d508c219bb8708 +Merge: 8b4f5a7 62af0d2 +Author: Asabeneh +Date: Tue May 24 19:41:46 2022 +0300 + + Merge pull request #340 from thealiyasar/master + + 02_day_data_types Turkish + +commit 62af0d2325d415131eea8f9146649f2ce27f91d5 +Author: Ali Yaşar <43387306+thealiyasar@users.noreply.github.com> +Date: Thu May 12 20:48:23 2022 +0300 + + Create 02_day_data_types Turkish + +commit 8b4f5a7e8c53d9a53cf7c261dae6665c27553cb3 +Author: Asabeneh +Date: Sat Apr 16 12:18:04 2022 +0300 + + minor correction + +commit 0d064ad35f3198b8bc765a3649ae906551085cab +Author: Asabeneh +Date: Sat Apr 16 10:26:55 2022 +0300 + + typo fix + +commit 153a57b89b1a29e738eac18371a70116832a0651 +Author: Asabeneh +Date: Sat Apr 16 10:26:06 2022 +0300 + + link added + +commit faace4f703913a2329fdb2ec37be05eedd7dfa56 +Author: Asabeneh +Date: Sat Apr 16 09:59:16 2022 +0300 + + typo fixes and some minor corrections + +commit 0f4a2b67ccbe94a744b5033ee99b6dc2f585a89e +Merge: 895f7ea 95b8056 +Author: Asabeneh +Date: Fri Apr 15 15:05:56 2022 +0300 + + Merge pull request #317 from YusufAgca/master + + Added Turkish link in the main readMe.md + +commit 95b8056f266b1bf03b44057695430d0ffef41096 +Author: Yusuf <98342712+YusufAgca@users.noreply.github.com> +Date: Wed Apr 13 21:42:40 2022 +0300 + + Added Turkish link in the main readMe.md + +commit 895f7ea24b0d47ee3a210dd42edb28f066dfaa2e +Merge: a22baed 47ae977 +Author: Asabeneh +Date: Wed Apr 13 21:01:46 2022 +0300 + + Merge pull request #316 from YusufAgca/master + + Turkish translation + +commit 47ae97784137354b73293bc719853bf87ae5dcee +Author: YusufAgca <98342712+YusufAgca@users.noreply.github.com> +Date: Wed Apr 13 15:44:16 2022 +0300 + + Created Turkish translation + +commit a22baede03476a8e8b29d9cea18622e0efe3ddf9 +Merge: a10e078 46b4d9b +Author: Asabeneh +Date: Sun Mar 27 01:03:52 2022 +0200 + + Merge pull request #294 from Milan-960/master + + typo error has been fixed and flag has been added and working on polish lang🔥 + +commit 46b4d9bea9410101ad4390810020a5649150e3e4 +Author: Milan960 +Date: Sun Mar 20 10:04:48 2022 +0100 + + typo error has been fixed and flag and Polish lang 🔥 + +commit 5f955302227229b72d412792eef194149ee01c0b +Author: Milan960 +Date: Sun Mar 20 09:41:31 2022 +0100 + + typo error has been fixed and flag and Polish lang 🔥 + +commit dc7d56b92022a6f33c7d396fa1e439b5bed79829 +Author: Milan960 +Date: Sun Mar 20 09:38:14 2022 +0100 + + typo error has been fixed and flag has been added 🔥 + +commit a10e07845cb2c5c70fb525ec6a22bc249c2345bc +Merge: 1979091 7b9b786 +Author: Asabeneh +Date: Mon Mar 14 21:25:35 2022 +0200 + + Merge pull request #291 from datlechin/master + + vietnamese day2 translation + +commit 7b9b786be1b9aa9ba85b1a6d0e59444963c8ab8b +Author: Ngô Quốc Đạt <56961917+datlechin@users.noreply.github.com> +Date: Mon Mar 14 21:21:07 2022 +0700 + + vietnamese day2 translation + +commit 197909146290685f9f5735f01b140caf8c742362 +Merge: d4746d3 26af1a2 +Author: Asabeneh +Date: Tue Mar 8 22:12:26 2022 +0200 + + Merge pull request #287 from Bakhtiyar-Garashov/master + + Fix merge conflict + +commit 26af1a261c03ce5a12895ae979b1fab5d091c9f3 +Author: Bakhtiyar_Garashov +Date: Tue Mar 8 22:09:53 2022 +0200 + + Fix merge conflict + +commit d4746d3858b7edfe7d9926f4c46141ea6568e152 +Merge: 3ca1a9f 3dbcb1f +Author: Asabeneh +Date: Tue Mar 8 20:45:28 2022 +0200 + + Merge pull request #286 from luisadrianpuga/patch-1 + + Create dia_02_tipos_de_datos.md + +commit 3dbcb1f925e72a97f287f63d3618b561370f066d +Author: Luis Puga <47259370+luisadrianpuga@users.noreply.github.com> +Date: Tue Mar 8 12:40:39 2022 -0500 + + Create dia_02_tipos_de_datos.md + + Day 2 English to Spanish translation. + +commit 3ca1a9ff0f2ec1356ed86f6b8b534ca635688e40 +Merge: ae69b6e e57c825 +Author: Asabeneh +Date: Tue Mar 8 07:39:36 2022 +0200 + + Merge pull request #285 from datlechin/master + + Vietnamese translation - Day 2 (wip) + +commit e57c825cc73cc81d467e2ae72f30761d96558834 +Merge: 87266b7 ae69b6e +Author: Ngô Quốc Đạt <56961917+datlechin@users.noreply.github.com> +Date: Mon Mar 7 19:57:25 2022 -0800 + + Merge branch 'Asabeneh:master' into master + +commit 87266b7ac7243bbc7477060930ca05a09d4fa2d5 +Author: Ngô Quốc Đạt <56961917+datlechin@users.noreply.github.com> +Date: Mon Mar 7 19:56:24 2022 -0800 + + Vietnamese translation + +commit 6e54dc8d73c5dc0845e878582ec3a2d7029210b1 +Author: Ngô Quốc Đạt <56961917+datlechin@users.noreply.github.com> +Date: Mon Mar 7 19:42:12 2022 -0800 + + Day 1 `done` + +commit ae69b6ee4fbd599ff73ae8c801fd4c16402b1867 +Author: Asabeneh +Date: Mon Mar 7 22:15:14 2022 +0200 + + Vietnamese translation added + +commit 085341613f8297fd15f5e78b9952b417171e8ea9 +Merge: 56130ef 917e8fd +Author: Asabeneh +Date: Mon Mar 7 22:04:50 2022 +0200 + + Merge pull request #284 from datlechin/master + + Vietnamese translation + +commit 917e8fd01c039c52de3acbf17facd25c03904099 +Author: Ngô Quốc Đạt <56961917+datlechin@users.noreply.github.com> +Date: Mon Mar 7 10:22:20 2022 -0800 + + update + +commit 79862982ddf09cfa0a5086d5b6b9a311a20b42d6 +Author: Ngô Quốc Đạt <56961917+datlechin@users.noreply.github.com> +Date: Mon Mar 7 10:21:59 2022 -0800 + + update + +commit fbdc0aa6bc5e4e6f2c76d11ca101939df96f5aad +Author: Ngô Quốc Đạt <56961917+datlechin@users.noreply.github.com> +Date: Mon Mar 7 10:21:08 2022 -0800 + + update + +commit 0c4a8678706e539d03d35c23cb713cd07c0b6169 +Author: Ngô Quốc Đạt <56961917+datlechin@users.noreply.github.com> +Date: Mon Mar 7 10:18:58 2022 -0800 + + update + +commit 8c993f772039d410f3babbbc462471df034f2d74 +Author: Ngô Quốc Đạt <56961917+datlechin@users.noreply.github.com> +Date: Mon Mar 7 10:16:24 2022 -0800 + + Vietnamese translation + +commit 56130ef53388ab021fd0496f6740506019ad21f2 +Author: Asabeneh +Date: Sun Mar 6 11:41:17 2022 +0200 + + some corrections + +commit d63dc55cbb4556d4aa0abb4a8ca09f902682fa1b +Merge: 7ccf2de 1bd41df +Author: Asabeneh +Date: Sat Mar 5 17:57:07 2022 +0200 + + Merge branch 'master' of https://github.com/Asabeneh/30DaysOfJavaScript + +commit 7ccf2de915e8000e286bdf0513d9ffe00f20dee8 +Author: Asabeneh +Date: Sat Mar 5 17:55:24 2022 +0200 + + some fixes + +commit 1bd41df9b7a9f91e16c30020fd8f98126c2ea0ae +Merge: 9fc1c2a b430af0 +Author: Asabeneh +Date: Sat Mar 5 17:51:08 2022 +0200 + + Merge pull request #144 from codenrich/master + + Grammar Correction + +commit 9fc1c2a87ce95ce1dc2011c20c2d4f3f3012e17c +Merge: 6fbdea2 7fea1ed +Author: Asabeneh +Date: Sat Mar 5 17:07:11 2022 +0200 + + Merge pull request #276 from MatinSasan/patch-1 + + Fixed a typo in the line 183 (RU) + +commit 6fbdea240c8fd6425439a08242d593efce6dffa8 +Author: Asabeneh +Date: Sat Mar 5 17:04:58 2022 +0200 + + Korian Day 1 has been added + +commit e14526cbd13936397a04fdb6e90fc5ede63f5c5a +Merge: ef014b8 a4dd61b +Author: Asabeneh +Date: Sat Mar 5 17:01:25 2022 +0200 + + Merge pull request #282 from poiu694/master + + Translation To Korean (Day1) + +commit ef014b8fb975dfa4baab0f07b2759a03167504ab +Author: Asabeneh +Date: Sat Mar 5 16:45:46 2022 +0200 + + some changes + +commit e20d6e4a3868177d6cadae6cc2ba18e72c682299 +Author: Asabeneh +Date: Sat Mar 5 15:57:51 2022 +0200 + + testimonial link added + +commit a4dd61b08395a4cc725ed564648192c8dd0354d8 +Author: Lee <43488305+poiu694@users.noreply.github.com> +Date: Fri Mar 4 19:48:09 2022 +0900 + + Update korean README.md + +commit 7fea1ed02d6801c35e7c301c5bbc359ae72c82d3 +Author: Matin Sasanpour +Date: Sat Feb 26 14:42:10 2022 +0330 + + Fixed a typo in the line 183 (RU) + + Removed the extra "t" character at the end of "Пример: Однострочный комментарий", line 183 + +commit 97f84bf65fc9052afc2fb7ca0d481d22411d4496 +Author: Asabeneh +Date: Wed Nov 17 22:44:21 2021 +0200 + + corrections + +commit b094b3f64fd7482da3fc55085097577d0cef5c9f +Author: Asabeneh +Date: Wed Nov 17 21:02:59 2021 +0200 + + fixes + +commit b430af0e7612aff61a4c4810af14ca4548921072 +Merge: 07143be 273fdb8 +Author: codenrich +Date: Wed Jan 27 17:24:59 2021 -0500 + + Merge pull request #1 from codenrich/codenrich-grammarSpanish-1 + + Grammar Correction + +commit 273fdb855bb7b7f88d1457b6196cbf4cdbf36242 +Author: codenrich +Date: Wed Jan 27 17:22:42 2021 -0500 + + Grammar Correction + + This is a grammar correction + +commit 07143be3b78488dd7237c34a95694ec3fb68cfc6 +Author: asabeneh +Date: Tue Jan 26 02:05:57 2021 +0200 + + paypal link has been added + +commit 8d98f733b8b3e5b1a90b939941eb4d96867fd3f1 +Author: asabeneh +Date: Tue Jan 26 01:49:03 2021 +0200 + + paypal link has been added + +commit ff64df941921dbc970e96b2afeb712f69eb4091e +Author: Asabeneh +Date: Sun Sep 6 14:54:56 2020 +0300 + + minor changes + +commit c205c28493a8de54a14161206daf5b63d4a0748e +Author: Asabeneh +Date: Sat Aug 22 17:59:35 2020 +0300 + + day 1 fixes + +commit 06dd789a4f60404d8475d1d3d051e400475d5c2c +Author: Asabeneh +Date: Fri Aug 21 20:04:57 2020 +0300 + + day 9 higher order function + +commit aa9cc2d76c8bb9ef3082ef20512f5dda5ff69742 +Author: Asabeneh +Date: Fri Aug 21 20:02:22 2020 +0300 + + day 9 higher order function + +commit 41a3f95b1af1c10a8dd6eeec84d47b3c382e9d6a +Author: Asabeneh +Date: Thu Aug 20 21:47:41 2020 +0300 + + day 9 output format changed + +commit 585c33e7909b72bc72b55f0c9078ba70f4584bfa +Author: Asabeneh +Date: Mon Aug 17 15:32:42 2020 +0300 + + fixes + +commit 8d0e1b0ecd28e07ebc874013c6ad8b553b2439f0 +Author: Asabeneh +Date: Wed Jul 22 11:40:50 2020 +0300 + + objects part, typo fixes + +commit 07590604134158a0940a4880f69106993abff88a +Author: Asabeneh +Date: Sat Jul 11 14:20:40 2020 +0300 + + Introduction + +commit 669b24e703e392934222d1d9d5c0780556674502 +Author: Asabeneh +Date: Sat Jul 11 01:37:10 2020 +0300 + + Introduction + +commit a91246d75144b9fd8e2da3772c9bb2f911e1276b +Author: Asabeneh +Date: Sat Jul 11 01:09:49 2020 +0300 + + Final Projects + +commit ea8eeae1c89181a17e3f74faac614fae6a2b60ff +Author: Asabeneh +Date: Sat Jul 11 01:07:59 2020 +0300 + + Final Projects + +commit db4715c26f25176f07ea7bcc890e15e5c138fbd8 +Author: Asabeneh +Date: Sat Jul 11 01:06:29 2020 +0300 + + Min project portfolio + +commit 8ec9942065420452f32a699c35e7e83b901074b6 +Author: Asabeneh +Date: Sat Jul 11 01:04:44 2020 +0300 + + Min project portfolio + +commit c99a9c0829adb2a345b99484ef1a7af3ab1ee40b +Author: Asabeneh +Date: Sat Jul 11 01:02:23 2020 +0300 + + Final Projects + +commit 98c01111476afbf55c6b3ecb6b6f1eb337323c41 +Author: Asabeneh +Date: Sat Jul 11 00:59:37 2020 +0300 + + Animating characters + +commit 5a47c347030a884e1b7ef303c5169bd290e91fb4 +Author: Asabeneh +Date: Sat Jul 11 00:58:52 2020 +0300 + + Final Project + +commit 5a41bb02d9593759f95f94c56ba1772f7c5c65e0 +Author: Asabeneh +Date: Sat Jul 11 00:57:03 2020 +0300 + + Animating characters + +commit 1415c3fce2ef2ce4edf5a5eaf56c177a8205e840 +Author: Asabeneh +Date: Sat Jul 11 00:54:53 2020 +0300 + + Portfolio + +commit 46f08555288aaa558b27c17c42990bacff6c1b9b +Author: Asabeneh +Date: Sat Jul 11 00:51:24 2020 +0300 + + World Countries Data Visulalization 2 + +commit b4633de5b3eaf7885e441e12cf8114c9938b6e4d +Author: Asabeneh +Date: Sat Jul 11 00:47:34 2020 +0300 + + Mini project solar system + +commit 7cd6a2acebf2652b771e223f0ddd61736955d46d +Author: Asabeneh +Date: Sat Jul 11 00:46:03 2020 +0300 + + Mini project solar system + +commit 2f32af41122742e2c16a0728ec9f0621dde8d4c3 +Author: Asabeneh +Date: Sat Jul 11 00:43:29 2020 +0300 + + World Countries Data Visulalization 1 + +commit db1e530a18f5bb134bd929a835b7aad66fb97857 +Author: Asabeneh +Date: Sat Jul 11 00:42:16 2020 +0300 + + Mini project solar system + +commit 91bc91b7679b9794eb1d073334cc89364bb3c02c +Author: Asabeneh +Date: Fri Jul 10 21:59:44 2020 +0300 + + Event listeners + +commit b0381df1b0888e1f4f70547b9ad892148d2df3b2 +Author: Asabeneh +Date: Fri Jul 10 21:50:26 2020 +0300 + + Event listeners + +commit 8a85e2cda1ed1242f183314cc1fcc0069c23a706 +Author: Asabeneh +Date: Fri Jul 10 21:42:00 2020 +0300 + + World Countries Data Vizualization 2 + +commit 166befff0694f1728fc2cf019b8efe0e584ef4d6 +Author: Asabeneh +Date: Fri Jul 10 21:39:08 2020 +0300 + + World Countries Data Vizualization + +commit 2b5b53d68d88ccaf5187dd74c22eaca5ee6bdae7 +Author: Asabeneh +Date: Fri Jul 10 21:31:58 2020 +0300 + + Event Listeners + +commit 646ecd9b68e1115e204ae867af1f6f58ef7c92cd +Author: Asabeneh +Date: Fri Jul 10 21:25:48 2020 +0300 + + Mini project solar system + +commit 96e7e6967b14fe284d84beef503d3f18ac1b0d83 +Author: Asabeneh +Date: Fri Jul 10 21:20:54 2020 +0300 + + Event Listeners + +commit 8f1def325ca77d47c28e013961596395cbc2eda2 +Author: Asabeneh +Date: Fri Jul 10 21:02:13 2020 +0300 + + Web Storages + +commit 07ee73ce1af09e2bbd184178d89d63334a873f31 +Author: Asabeneh +Date: Fri Jul 10 21:00:24 2020 +0300 + + Web Storages + +commit 4da248784809dbaf91d214f803e6e064fb1f4c42 +Author: Asabeneh +Date: Fri Jul 10 20:59:03 2020 +0300 + + Destructuring and Spreading + +commit a6b05c3f59898f2e3b3418fb2fcf6449c900614a +Author: Asabeneh +Date: Fri Jul 10 20:58:19 2020 +0300 + + Destructuring and Spreading + +commit 9873970e6377ebecd5f86d260cbed7cf876ed441 +Author: Asabeneh +Date: Fri Jul 10 20:55:43 2020 +0300 + + Hihger Order Functions + +commit e9e166d322aac8287e9d6badf919c8b87518563c +Author: Asabeneh +Date: Fri Jul 10 20:54:47 2020 +0300 + + Objects + +commit 3abd13b3f2d22f24852367f3abc51ac6bb320219 +Author: Asabeneh +Date: Fri Jul 10 20:53:48 2020 +0300 + + Functions + +commit 6682648bb642c192cc2460fba646ffabefeac260 +Author: Asabeneh +Date: Fri Jul 10 20:53:13 2020 +0300 + + Loops + +commit 940956b239bf8a50c215b6f5c286115ab0671d04 +Author: Asabeneh +Date: Fri Jul 10 20:52:16 2020 +0300 + + Loops + +commit 4542bd01f4121887ea93534e1d3a0419f33ad9a8 +Author: Asabeneh +Date: Fri Jul 10 20:51:01 2020 +0300 + + Arrays + +commit 3f08b48feee544bf28bd917a931647b365a9bd2f +Author: Asabeneh +Date: Fri Jul 10 20:49:15 2020 +0300 + + Conditionals + +commit 655a467d8a2818908adf430cc9ea6ddf32efaa5f +Author: Asabeneh +Date: Fri Jul 10 20:31:06 2020 +0300 + + Manipulating DOM Object + +commit ae43d675ec10ef083a3b6fe6ffb5ac8d61c20eb5 +Author: Asabeneh +Date: Fri Jul 10 20:28:55 2020 +0300 + + DOM + +commit 9a01f9e833dc57102a32ead07e13d05a204f9121 +Author: Asabeneh +Date: Fri Jul 10 20:24:15 2020 +0300 + + DOM + +commit 9c41dafd737b0803342bd75606f048bcaa4832dc +Author: Asabeneh +Date: Fri Jul 10 20:14:29 2020 +0300 + + DOM + +commit 49f937a9edd0c190f5c2d0fd834b442e2c796b13 +Author: Asabeneh +Date: Fri Jul 10 20:12:59 2020 +0300 + + Writing Clean Codes + +commit b8bbeffa78b7739e347b99dc2f9328fcad0887cb +Author: Asabeneh +Date: Fri Jul 10 20:11:11 2020 +0300 + + Closures + +commit 04ba1f679105465e5dbe02653c0bd7ed83bfe13e +Author: Asabeneh +Date: Fri Jul 10 20:09:04 2020 +0300 + + Promises + +commit cea27915b32902ef3240264e13fccaf2726862be +Author: Asabeneh +Date: Fri Jul 10 20:07:29 2020 +0300 + + Web Storages + +commit 22080d36b985f9b315cffa025c86c38636ff106b +Author: Asabeneh +Date: Fri Jul 10 19:51:36 2020 +0300 + + JSON + +commit 0f66cca227f97e83ff45b7952d1f0db53007efbc +Author: Asabeneh +Date: Fri Jul 10 19:50:20 2020 +0300 + + Classes + +commit 25f0e5279ed3b4000bb150a1e7967ef91a7293b5 +Author: Asabeneh +Date: Fri Jul 10 19:48:52 2020 +0300 + + Error handling + +commit 528eae77ddd03c64426b7d9c7a106ad68be4215a +Author: Asabeneh +Date: Fri Jul 10 19:47:10 2020 +0300 + + Console Object Methods + +commit 9bccf18cf97e675899bdcc3651a03cb63454a7d0 +Author: Asabeneh +Date: Fri Jul 10 19:45:26 2020 +0300 + + Regular Expressions + +commit 8f3b62686b0f1739c603f40f53d227e63d836207 +Author: Asabeneh +Date: Fri Jul 10 19:43:36 2020 +0300 + + Destructuring and Spreading + +commit 5030c42d8061c2c40dddc414aec372d4b5f984ff +Author: Asabeneh +Date: Fri Jul 10 19:41:47 2020 +0300 + + Sets and Maps + +commit f025fd0d1f05adfd2b1a427961f27c88863dda9c +Author: Asabeneh +Date: Fri Jul 10 19:38:35 2020 +0300 + + Higher Order Functions + +commit b660ebd58b13bdd7a411b3a5f04fd430b65ecf78 +Author: Asabeneh +Date: Fri Jul 10 19:36:40 2020 +0300 + + Objects + +commit fd5ce6204c6ec6c191093bbcbc7a997ebae6a737 +Author: Asabeneh +Date: Fri Jul 10 19:35:11 2020 +0300 + + Functions + +commit 792dca3210643b6a8ba7a1679cbff683ab3464e4 +Author: Asabeneh +Date: Fri Jul 10 19:33:43 2020 +0300 + + Arrays + +commit 69e3fcb41cbc019faadd24cb31eb41601d2f91d0 +Author: Asabeneh +Date: Fri Jul 10 19:33:03 2020 +0300 + + Functions + +commit 66e99f902c6117d71124197f56216b19014ee378 +Author: Asabeneh +Date: Fri Jul 10 19:31:20 2020 +0300 + + Arrays + +commit 53048e2bd1fd72e1971d590a6a6101ef014c8623 +Author: Asabeneh +Date: Fri Jul 10 19:29:45 2020 +0300 + + Conditionals + +commit 6aecad88ad35e221c963a81e4589871a6f3c3fd8 +Author: Asabeneh +Date: Fri Jul 10 12:14:03 2020 +0300 + + Data Types + +commit 469bc26846673b725b154a5dc88b34866c7ae247 +Author: Asabeneh +Date: Fri Jul 10 12:13:29 2020 +0300 + + Introduction + +commit 0a868e17aacec7b4c430e1c0068384314d585c50 +Author: Asabeneh +Date: Fri Jul 10 12:11:44 2020 +0300 + + Booleans Operators Date + +commit cec710f41a8a1f9944102c04ddee3068993ecc79 +Author: Asabeneh +Date: Fri Jul 10 12:10:36 2020 +0300 + + Booleans Operators Date + +commit 8370b8165001325609dbe0dd66fae1f83667cedf +Author: Asabeneh +Date: Fri Jul 10 12:08:08 2020 +0300 + + Booleans Operators Date + +commit 6e816d7576ffe2216f7e624f7fc33d86376ce90b +Author: Asabeneh +Date: Fri Jul 10 12:04:03 2020 +0300 + + Data types + +commit 85899a69e26e776d237a2ad0b5ca659fc7c81486 +Author: Asabeneh +Date: Fri Jul 10 12:00:29 2020 +0300 + + Introduction + +commit f231757a791b57ae70b369bc92274ca058677fa9 +Author: Asabeneh +Date: Sat Jun 20 05:35:16 2020 +0300 + + video tutorials added + +commit a71be3414c75fbc5a49bfb21008f5891d09d38ef +Author: Asabeneh +Date: Mon Jun 8 06:18:49 2020 +0300 + + patron icon added + +commit 2f9df1a642e68ac2d9f6cf074cd7dc2291ff4082 +Author: Asabeneh +Date: Mon Jun 8 06:10:53 2020 +0300 + + patron icon added + +commit 61dac500534c24c691c49f8d187838d0abf9ecc0 +Author: Asabeneh +Date: Mon Jun 8 06:03:05 2020 +0300 + + patron icon added + +commit 80775ad269dc99d46414287ea7a5d6ccc59ed351 +Author: Asabeneh +Date: Mon Jun 8 05:30:54 2020 +0300 + + patreon icon added + +commit 2a4eedbd8e2aa8aced56c6de32229a7326ef51bb +Author: Asabeneh +Date: Sat Jun 6 02:44:28 2020 +0300 + + day 8 : scopes and object - reviewed + +commit 382a2aedddb510dc0f0aca7a74020f9dd944ee7f +Author: Asabeneh +Date: Sat Jun 6 00:53:03 2020 +0300 + + day 7 : functions - reviewed + +commit 11b266be087867ec8fb039c43ef611d89b25b976 +Author: Asabeneh +Date: Sat Jun 6 00:04:58 2020 +0300 + + day 6: loops - reviewed + +commit 91d87517d846b3d70ea79fcff8331da65e2b5e81 +Author: Asabeneh +Date: Fri Jun 5 23:42:50 2020 +0300 + + day 5:arrays - reviewed + +commit aad0bcb61b274a4716948c2482f9448f7bcd9040 +Author: Asabeneh +Date: Fri Jun 5 23:10:09 2020 +0300 + + day 4: conditionals - reviewed + +commit d4ac4d146e8b6900bf04b332135d6c6b9cd2a241 +Author: Asabeneh +Date: Fri Jun 5 22:53:11 2020 +0300 + + day 3 reviewed + +commit 9bdd8185e5f3a06f524fd13e22dc26a969e05bc4 +Author: Asabeneh +Date: Fri Jun 5 21:42:25 2020 +0300 + + day 2 reviewed + +commit 65bc076e0bf96ef78b0e38380ed513d75aa57698 +Author: Asabeneh +Date: Fri Jun 5 18:11:30 2020 +0300 + + day 1 reviewed + +commit d1b2fc8dca2e8ad512ae672ad268f5fd40ea0651 +Author: Asabeneh +Date: Fri Jun 5 18:08:25 2020 +0300 + + day 1 reviewed + +commit 65d10ba7ae9bf2eabc0e69bcb7e89ca18ad5502a +Merge: 5b53d3f 6f224d7 +Author: Asabeneh +Date: Fri Jun 5 13:51:02 2020 +0300 + + Merge pull request #88 from venkatprasadh/master + + RegExp constructor name typo fixed. + +commit 6f224d7ab40b307348fdfa58cf3bc5c13f0bc7e2 +Merge: 7c19943 5b53d3f +Author: Venkat Prasadh +Date: Thu Jun 4 21:34:35 2020 +0530 + + Merge branch 'master' of https://github.com/venkatprasadh/30DaysOfJavaScript + +commit 7c19943b55755f442101b2dfd5e32d794e22c094 +Author: Venkat Prasadh +Date: Thu Jun 4 21:31:14 2020 +0530 + + Update 12_day_regular_expressions.md + + Fix RegExp constructor name typo. + +commit 5b53d3f04b1126fc7abb245e3b34ca9c549f2f5b +Merge: f6b0536 95c76f7 +Author: Asabeneh +Date: Tue Jun 2 16:50:52 2020 +0300 + + Merge pull request #87 from pkiczko/day2up + + day 2 update + +commit 95c76f7ea6edce0ada39bda2fe8d47c33a6ada11 +Merge: d5ecfce f6b0536 +Author: Asabeneh +Date: Tue Jun 2 16:50:39 2020 +0300 + + Merge branch 'master' into day2up + +commit d5ecfcec803c6147c7c0d30098c83114310c960a +Author: Pawel Kiczko +Date: Tue Jun 2 16:02:48 2020 +0300 + + day 2 update + +commit f6b0536f44ffbc4476e5a8c22e454fa683d00787 +Author: Asabeneh +Date: Tue Jun 2 15:24:00 2020 +0300 + + language menu added + +commit a9f807a3f92a03942f5c36abc8283c2b470056dd +Merge: b811623 b8c794c +Author: Asabeneh +Date: Tue Jun 2 14:54:28 2020 +0300 + + Merge pull request #75 from Badoorxp/patch-1 + + Update 02_day_data_types.md + +commit b81162318734783091599a475686ddd41799899b +Merge: 1ef3e93 a136d11 +Author: Asabeneh +Date: Tue Jun 2 14:52:58 2020 +0300 + + Merge pull request #77 from MiddleOutManager/patch-1 + + Update match.js + +commit 1ef3e9365170ecbd4a5591e45702590ea5999e05 +Merge: 77c97a5 6d42895 +Author: Asabeneh +Date: Tue Jun 2 14:44:53 2020 +0300 + + Merge pull request #73 from ljcordero/patch-3 + + Fixing day 27 link + +commit 77c97a5dcea589cdd8730a3ac6c93544cf4d8757 +Merge: 2ff454b 054a83e +Author: Asabeneh +Date: Tue Jun 2 14:40:53 2020 +0300 + + Merge pull request #72 from ljcordero/patch-2 + + Fixing Days Links. + +commit 2ff454b5a83a740e8ca714495740489fc2677e6d +Merge: bd771d9 2aaf693 +Author: Asabeneh +Date: Tue Jun 2 14:40:14 2020 +0300 + + Merge pull request #71 from ljcordero/patch-1 + + Fixing broken link + +commit bd771d9ca8680ea9bb024e0ef370d15273a1f2ba +Merge: c4c7e54 200013b +Author: Asabeneh +Date: Tue Jun 2 14:35:38 2020 +0300 + + Merge pull request #74 from ljcordero/patch-4 + + Day 25 link + +commit c4c7e549ad269a06978bc6e12a6564040463bf5c +Merge: 1c7e6a4 3987303 +Author: Asabeneh +Date: Tue Jun 2 14:32:53 2020 +0300 + + Merge pull request #70 from ograsyilmaz/patch-1 + + Update 07_day_functions.md + +commit 1c7e6a4ed9d510503cb46e24c84a4ad2f184d66c +Merge: 5b56056 4a2dc08 +Author: Asabeneh +Date: Tue Jun 2 14:31:10 2020 +0300 + + Merge pull request #81 from Rajesh-kumar-r/patch-1 + + url fix + +commit 5b5605634fdabaf65b91a3bf0e2c3f23546eab99 +Merge: ab33a12 d0fd565 +Author: Asabeneh +Date: Tue Jun 2 14:19:57 2020 +0300 + + Merge pull request #79 from Ibochkarev/russian + + Start of translation into Russian + +commit ab33a126d403277aa261659b0865f54dfe661288 +Merge: 233fe17 2d44a25 +Author: Asabeneh +Date: Tue Jun 2 14:17:31 2020 +0300 + + Merge pull request #82 from thamaragerigr/spanish + + Day 1- Spanish translation + +commit 233fe17cf09e9ca69b3a4840f6dd3e9e1737f07b +Merge: c10b9ed 00536c9 +Author: Asabeneh +Date: Tue Jun 2 14:16:18 2020 +0300 + + Merge pull request #84 from chety/patch-1 + + Update 02_day_data_types.md + +commit c10b9ed54b660bd64059bddb357642656cf2ba89 +Merge: 69a857c f8ccdf0 +Author: Asabeneh +Date: Tue Jun 2 14:14:56 2020 +0300 + + Merge pull request #86 from pkiczko/day1up + + Day 1 + +commit f8ccdf0e119c988e7a1fc92e14a0722bc2b4702b +Author: Pawel Kiczko +Date: Tue Jun 2 13:46:18 2020 +0300 + + day 1 final revision + +commit 55d6aee5ea45d4c93b054b08361582bf3dde950a +Author: Pawel Kiczko +Date: Tue Jun 2 13:21:39 2020 +0300 + + checking added image size + +commit 2e8aadbf5f2088ea2a01dafc209b91fadf34b2bb +Author: Pawel Kiczko +Date: Tue Jun 2 13:20:44 2020 +0300 + + checking added image size + +commit 69a857c01963485dbb93fe84776211610f2aae3a +Merge: 6c3be24 6dfcbc6 +Author: Asabeneh +Date: Wed May 13 15:58:10 2020 +0300 + + Merge pull request #78 from silvaesouza/fix-day02-ascii-number + + Fix day 02 ascii number + +commit 00536c900ef98eb70acb1ba672d1c31a1d9607af +Author: Chety +Date: Wed May 13 15:54:40 2020 +0300 + + Update 02_day_data_types.md + +commit 2d44a25b6e7abb348a3f92746f4106d42cc796a1 +Author: thamaragerigr +Date: Tue Mar 24 10:41:54 2020 +0100 + + day1 + +commit 4a2dc0882955499beb8ec63c31c86f2cdd644310 +Author: Rajesh-kumar-r <47350245+Rajesh-kumar-r@users.noreply.github.com> +Date: Tue Feb 25 17:33:24 2020 +0530 + + url fix + +commit d0fd5655cf8b7817ddc3eea5ba1a32b12016ee33 +Author: Ibochkarev +Date: Fri Feb 14 14:02:01 2020 +0600 + + Added translation of materials of the 5 day + +commit 8a9ccb51276d13e0812199b981d1cd7099da3cdf +Author: Ibochkarev +Date: Fri Feb 14 13:36:05 2020 +0600 + + Added translation of materials of the 6 day + +commit 6ca66bb0a9f4916e49af544e7f390b477ef46176 +Author: Ibochkarev +Date: Wed Feb 12 12:18:37 2020 +0600 + + Added translation of materials of the 4 day + +commit ca0d61405105fba7c33ade948482ab0f51836734 +Author: Ibochkarev +Date: Tue Feb 11 20:55:10 2020 +0600 + + Added translation of materials of the 3 day + +commit cfc43353f1eaf54b13855c28fd044be66a791f7b +Author: Ibochkarev +Date: Mon Feb 10 15:15:55 2020 +0600 + + Minor update + +commit 7a31eb7d3febe298af501a3725d5744137db5498 +Author: Ibochkarev +Date: Mon Feb 10 15:04:48 2020 +0600 + + Added translation of materials of the second day + +commit b61994647537838927ca85081b5a43f5413231a6 +Author: Ibochkarev +Date: Mon Feb 10 04:46:30 2020 +0600 + + Start of translation into Russian + +commit 6dfcbc66c8977e73ebe1caa19bec62670405a4de +Author: Adriano P. S. Souza +Date: Sat Feb 8 12:23:10 2020 -0300 + + Fix day 02 ascii number + +commit a136d11027a562d557d2ee778dce56cec265d3b4 +Author: MiddleOutManager <43626599+MiddleOutManager@users.noreply.github.com> +Date: Fri Feb 7 20:45:18 2020 -0500 + + Update match.js + + removed + from regEx = /\d+/ and added 'g' from the regEx to match the output described on line 21 + Changed 'text' to txt' + +commit b8c794cd6e67165e8a5161b6ef8e10db008024d2 +Author: Bader B +Date: Mon Feb 3 14:20:49 2020 +0300 + + Update 02_day_data_types.md + + Corrected the numbering of String Object Methods/Functions as well as the Level 2 Exercises. + +commit 200013b9011e900112357437d013f194d205a2ef +Author: ljcordero +Date: Fri Jan 31 13:56:04 2020 -0400 + + Day 25 link + +commit 6d4289591374ce526a3e21e3c28958072cb96049 +Author: ljcordero +Date: Fri Jan 31 13:54:18 2020 -0400 + + Fixing day 27 link + +commit 054a83e8829ba10727e4f445ca51187401163a51 +Author: ljcordero +Date: Fri Jan 31 09:40:35 2020 -0400 + + Fixing Days Links. + +commit 2aaf693363bbff30528a01a677f73251ae6eb4ed +Author: ljcordero +Date: Fri Jan 31 09:37:46 2020 -0400 + + Fixing broken link + +commit 6c3be2413554887b6ce468d508ac92fd8285bd20 +Author: Asabeneh +Date: Fri Jan 31 01:54:02 2020 +0200 + + day 30 + +commit 3987303594feddf73b07c2fa9333b6a6a6115f0e +Author: Yılmaz +Date: Thu Jan 30 18:58:12 2020 +0300 + + Update 07_day_functions.md + + function sumArrayValues(arr) + It takes a variable array from the outside + +commit d215262816085da6c57104ecd5973678859642fd +Author: Asabeneh +Date: Thu Jan 30 01:30:06 2020 +0200 + + day 29 + +commit 3765e51b6431a7a2f81bbf32dfac11da8eac8050 +Author: Asabeneh +Date: Thu Jan 30 01:14:40 2020 +0200 + + day 29 + +commit 51f3b2071eb3d501c1f610b40c462cf65e84f5dd +Author: Asabeneh +Date: Tue Jan 28 23:57:46 2020 +0200 + + day 28 + +commit 899a3c884e7223924ae6c9cbed377af50fd4b2f5 +Author: Asabeneh +Date: Tue Jan 28 01:03:13 2020 +0200 + + day 27 + +commit 2d4106989926edf955a7e6bf378b3c2fc631ddb0 +Author: Asabeneh +Date: Tue Jan 28 00:55:56 2020 +0200 + + day 27 + +commit 60e8737dc004761592786a38fc2476086e9d01c1 +Author: Asabeneh +Date: Sun Jan 26 23:25:29 2020 +0200 + + day 26 + +commit aeffd9be589047fa9d1ccb8be353bec00449cc75 +Author: Asabeneh +Date: Sat Jan 25 23:16:51 2020 +0200 + + day 25 + +commit fe61b12460d8b76f841619a77037bc156877fc01 +Author: Asabeneh +Date: Sat Jan 25 23:03:53 2020 +0200 + + day 25 + +commit a66a26b8f54f58b518bef6f7717f5743485bf1db +Author: Asabeneh +Date: Sat Jan 25 22:45:42 2020 +0200 + + day 25 + +commit ca2a1c84c7406a96d1bffc84159c2de9329bfdf7 +Author: Asabeneh +Date: Sat Jan 25 02:30:38 2020 +0200 + + day 24 + +commit 6ed4ed40d0b637a9ad9db6569e336aabfb86d488 +Author: Asabeneh +Date: Fri Jan 24 01:09:09 2020 +0200 + + day 23 + +commit 3d6fa6064a6a491348a9db14a3487e3c39c169a1 +Author: Asabeneh +Date: Fri Jan 24 00:59:28 2020 +0200 + + day 23 + +commit 3896123c19db40ca1043cf4d82b055e35f59b7dd +Author: Asabeneh +Date: Thu Jan 23 00:04:16 2020 +0200 + + day 22 + +commit e29cb6f0e7449e97ac8b2bd753f5803286ef9749 +Author: Asabeneh +Date: Thu Jan 23 00:00:56 2020 +0200 + + day 22 + +commit d2310cc142afde94050cf781e0aaa1b87f5ab647 +Author: Asabeneh +Date: Wed Jan 22 23:58:25 2020 +0200 + + day 22 + +commit 262969fdddf696bd570be3e40d9956e347c1be01 +Author: Asabeneh +Date: Wed Jan 22 23:54:57 2020 +0200 + + day 22 + +commit 12f1aa06c3696cbee996c69c84a833747b0ae1a3 +Author: Asabeneh +Date: Wed Jan 22 23:38:16 2020 +0200 + + day 22 + +commit 4bc164d2ad4506acdeec85d8e1b85f0a1e4f98ed +Author: Asabeneh +Date: Wed Jan 22 11:03:35 2020 +0200 + + day 21 + +commit 231a018c8cdabaecec76a7fc67c2c62fe34cf78e +Author: Asabeneh +Date: Wed Jan 22 11:00:55 2020 +0200 + + day 21 + +commit 70e820944cef07c0bd7cf5d24fee07e3faa72efc +Author: Asabeneh +Date: Wed Jan 22 03:36:02 2020 +0200 + + day 21 + +commit 4c79ffe59c090668c28583ea03cfdd091d7c0a96 +Author: Asabeneh +Date: Wed Jan 22 03:10:16 2020 +0200 + + day 21 + +commit a037360491d468fec83c9f81e50fc51260839ff6 +Author: Asabeneh +Date: Wed Jan 22 03:06:42 2020 +0200 + + day 21 + +commit 8a7e87b9e0adcb363eca946dcb9b61dcd0c5294b +Author: Asabeneh +Date: Wed Jan 22 03:04:12 2020 +0200 + + day 21 + +commit d6254a901f618e0a4ce9cd8fdc775a646d8bf382 +Author: Asabeneh +Date: Wed Jan 22 01:56:29 2020 +0200 + + day 21 + +commit 689d035730b71e01bcc3ee93924679d3466317d4 +Author: Asabeneh +Date: Tue Jan 21 01:33:22 2020 +0200 + + day 20 + +commit 316b61c826be50167c53ef9d02cfd8a3525ca1fe +Author: Asabeneh +Date: Tue Jan 21 01:06:05 2020 +0200 + + day 20 + +commit 108032543801b9602c4c629455cf59d2514ca36a +Author: Asabeneh +Date: Tue Jan 21 01:04:01 2020 +0200 + + day 20 + +commit 5713a23e1d557f8fe31a442a6fece29d3f8f6dfc +Author: Asabeneh +Date: Tue Jan 21 00:58:06 2020 +0200 + + day 20 + +commit 55d651a19c15677801e3a5b892bec4efc800d4b8 +Author: Asabeneh +Date: Tue Jan 21 00:32:23 2020 +0200 + + day 20 + +commit 20559fe38fc918da9287d2cb02796a403ad33eac +Author: Asabeneh +Date: Mon Jan 20 18:28:29 2020 +0200 + + fixing link + +commit c1c4842c1116f57910ea04f9d62fda0b3204e740 +Author: Asabeneh +Date: Sun Jan 19 22:18:45 2020 +0200 + + day 19 + +commit 73cdac8079b18da036b035720d26f289aea34170 +Author: Asabeneh +Date: Sun Jan 19 03:03:50 2020 +0200 + + day 18 + +commit 6e467ba897e9959cb741b91e523e976a594c63ea +Merge: 0d45c6f 8068378 +Author: Asabeneh +Date: Sun Jan 19 02:57:49 2020 +0200 + + day 18 + +commit 0d45c6ff803d62901346a30cd979baabc85b7e43 +Author: Asabeneh +Date: Sun Jan 19 02:56:08 2020 +0200 + + day 18 + +commit 80683789e016a0f97e1d759fdef857d9e28a39e0 +Merge: a71d0c3 6f16325 +Author: Asabeneh +Date: Sat Jan 18 14:14:00 2020 +0200 + + Merge pull request #59 from npnjuguna/npnjuguna-regular-expressions-examples-typo-fixes + + regular expressions examples typo fixes + +commit a71d0c3b7dc6b5ff1f90e2942a8aee792b1aac24 +Merge: a61e8a9 e9b7ce0 +Author: Asabeneh +Date: Sat Jan 18 14:12:49 2020 +0200 + + Merge pull request #60 from npnjuguna/npnjuguna-default-values-with-constructor-fix + + default values with constructor fix + +commit a61e8a92c7a3a1ff91ebdf7ccd062cd8c07d210b +Merge: c8eab85 75a1878 +Author: Asabeneh +Date: Sat Jan 18 14:11:59 2020 +0200 + + Merge pull request #61 from npnjuguna/npnjuguna-json-examples-fix + + json examples fix + +commit 75a187864d0f8d81b2c22f9c46a570a538f283d8 +Author: Patrick Njuguna +Date: Sat Jan 18 14:12:00 2020 +0300 + + json examples fix + + avoid using 'text' as a variable name since it is reserved and returns an error + +commit e9b7ce001be7c36b7add6179bdea796f9ccc81b8 +Author: Patrick Njuguna +Date: Sat Jan 18 14:01:04 2020 +0300 + + default values with constructor fix + + to allow example to be run without returning already defined error + +commit 6f16325085f3baa4a2945cf5271e801e849a6722 +Author: Patrick Njuguna +Date: Sat Jan 18 13:28:21 2020 +0300 + + regular expressions examples typo fixes + +commit c8eab858a8d41d4c78eb5dfe8003cb9444955d99 +Author: Asabeneh +Date: Sat Jan 18 01:09:01 2020 +0200 + + day 17 + +commit 46bad2b21f07a0e7c5374bde1765c42fbf2389bd +Author: Asabeneh +Date: Sat Jan 18 00:38:13 2020 +0200 + + day 17 + +commit 546fb71cd3be81a1997c5022fe2a76e783c0af0d +Author: Asabeneh +Date: Fri Jan 17 22:15:11 2020 +0200 + + day 16 fixes + +commit e3b022f0ed39d55ce6cf085cc183cd7930ec5597 +Author: Asabeneh +Date: Fri Jan 17 02:09:20 2020 +0200 + + day 16 + +commit c51058b3de4df70a216ed25e57ad474c6ffcb166 +Author: Asabeneh +Date: Thu Jan 16 01:01:28 2020 +0200 + + day 15 + +commit 2f06722dfb1d4c8e8559c8e559d894af1cdf02a2 +Author: Asabeneh +Date: Thu Jan 16 00:59:38 2020 +0200 + + day 15 + +commit d3b2c892ced8295ddc1542baab7089884271a56a +Author: Asabeneh +Date: Thu Jan 16 00:56:45 2020 +0200 + + day 15 + +commit 0a55a7db096d5dd46388336086bb0e123ea747d1 +Author: Asabeneh +Date: Thu Jan 16 00:50:11 2020 +0200 + + day 15 + +commit 868322659deb26d2cd7735fa61c8fb22acc4e01d +Author: Asabeneh +Date: Wed Jan 15 01:17:59 2020 +0200 + + day 14 + +commit b0fbeeccd1ea9969ecdd63e80eacf00aaf07af3b +Author: Asabeneh +Date: Wed Jan 15 01:16:52 2020 +0200 + + day 14 + +commit a47f48f23ea701e9e998f3ce16d1d84eb8db169b +Author: Asabeneh +Date: Wed Jan 15 01:15:06 2020 +0200 + + day 14 + +commit ac2ff0daf8a9470648fbc36384e3a07ef170cf7f +Author: Asabeneh +Date: Wed Jan 15 01:08:40 2020 +0200 + + day 14 + +commit 373544944c91da9891f9a7853af23e764497edd8 +Author: Asabeneh +Date: Wed Jan 15 00:57:37 2020 +0200 + + day 14 + +commit 4648a74380b53beedbcca1affd3c2d1be1449b3f +Author: Asabeneh +Date: Tue Jan 14 14:36:25 2020 +0200 + + fixing links + +commit 1d1b681fc93149f7194699f267935916f276119f +Author: Asabeneh +Date: Tue Jan 14 14:34:04 2020 +0200 + + fixing links + +commit 72a0f3e7d1ed7a3f3964120aefa2be886d9533ed +Author: Asabeneh +Date: Tue Jan 14 01:34:32 2020 +0200 + + day 13 + +commit 04f90c896854f7b383340837f11ee958a2bc3494 +Author: Asabeneh +Date: Mon Jan 13 01:32:33 2020 +0200 + + day 12 + +commit 29bb42d8b965d76e37683d0b214ab925c8051085 +Author: Asabeneh +Date: Mon Jan 13 01:19:10 2020 +0200 + + day 12 + +commit 3252cb6f3b0847798143d942c4efc9079550921b +Author: Asabeneh +Date: Sun Jan 12 00:47:36 2020 +0200 + + levels + +commit 09a9a7e0ff2d9a3aa3ad5569c2817cc321e53c92 +Author: Asabeneh +Date: Sun Jan 12 00:43:40 2020 +0200 + + levels + +commit 17c546fa7f43431c64876e2b1f4df3681841677f +Author: Asabeneh +Date: Sun Jan 12 00:40:37 2020 +0200 + + levels + +commit 9ead21a3deb958fdcee6dad4b98726a16735cad8 +Author: Asabeneh +Date: Sun Jan 12 00:39:24 2020 +0200 + + levels + +commit 1145e818518f817791835d214d3a5cde87b16f74 +Author: Asabeneh +Date: Sun Jan 12 00:19:37 2020 +0200 + + levels + +commit 37ba263109ffed64c01554291a362ba12bca93bb +Author: Asabeneh +Date: Sat Jan 11 20:28:57 2020 +0200 + + day 11 + +commit b026826c078be6cd63867689f1c90eab98dfb50d +Author: Asabeneh +Date: Sat Jan 11 20:17:53 2020 +0200 + + day 11 + +commit 0c02afb9c7873648123c84010669d831d67d3b1b +Author: Asabeneh +Date: Sat Jan 11 20:02:35 2020 +0200 + + day 11 + +commit 0efbad1ad75aa979fa6449ad32b8339a24da670a +Author: Asabeneh +Date: Sat Jan 11 13:14:46 2020 +0200 + + fixing links + +commit ed48496e6f2d692fd5fed885d5f54d2bbbc15b08 +Author: Asabeneh +Date: Sat Jan 11 00:05:20 2020 +0200 + + day 10 + +commit c9111011f13b7ae636ce9724c46199673de5c613 +Author: Asabeneh +Date: Fri Jan 10 23:57:16 2020 +0200 + + day 9 fixes + +commit 8592102377a8182dd52c82b81590be8bc7606734 +Author: Asabeneh +Date: Fri Jan 10 23:36:17 2020 +0200 + + day 9 fixes + +commit 5a2dae3c13472ad8299187b00fd2f8fbe99a075f +Author: Asabeneh +Date: Fri Jan 10 23:35:53 2020 +0200 + + day 10 + +commit 5b8c908f7ecec78884c0dfaaf138ad390c00b83a +Author: Asabeneh +Date: Fri Jan 10 20:35:30 2020 +0200 + + day 9 fixes + +commit 0b3d3471676063326517f39b6e11236e7b9344d0 +Author: Asabeneh +Date: Fri Jan 10 20:26:35 2020 +0200 + + day 9 fixes + +commit 57f90ab9cbf421c36606998bd5778e856a96f4a4 +Author: Asabeneh +Date: Fri Jan 10 20:23:00 2020 +0200 + + day 9 fixes + +commit 667129e94c73d3ecd17f0e62542baa82dcc2322b +Author: Asabeneh +Date: Fri Jan 10 20:20:32 2020 +0200 + + day 9 fixes + +commit ba53c499ff1fefd348a354df5376b64a8a1039ac +Merge: 6adedd1 4d84d2c +Author: Asabeneh +Date: Fri Jan 10 08:13:15 2020 +0200 + + Merge pull request #49 from npnjuguna/npnjuguna-find-example-fix + + find example fix + +commit 4d84d2c8ca1b5002c439e4a813ec6af4025f60fd +Author: Patrick Njuguna +Date: Fri Jan 10 07:18:44 2020 +0300 + + find example fix + + added the output to the example + +commit 6adedd1b7b96c66a6e8c1a92e02c2267bd14c0f0 +Author: Asabeneh +Date: Thu Jan 9 23:37:18 2020 +0200 + + day 9 + +commit be2c8ce1a28d5dcbbc9515c923b80e98b56ca8c6 +Author: Asabeneh +Date: Thu Jan 9 23:33:33 2020 +0200 + + day 9 + +commit c12f1f9a6161c776a0dd4879ddbbe738d3b27333 +Author: Asabeneh +Date: Thu Jan 9 23:31:33 2020 +0200 + + day 9 + +commit 0220609900e3ed2b5f706149bd9c5fced1470eba +Author: Asabeneh +Date: Thu Jan 9 23:30:27 2020 +0200 + + day 9 + +commit f434534ec49554f8e83ec061935fa62dfccc9e60 +Author: Asabeneh +Date: Thu Jan 9 23:22:04 2020 +0200 + + day 9 + +commit e7a2adc9475a07a45fe6ef298d6d88176693ceb3 +Author: Asabeneh +Date: Thu Jan 9 14:43:40 2020 +0200 + + day 8 fixes + +commit e721612a385e79370b12f06f34b83c7f76f31449 +Merge: 76052d4 e6b77d5 +Author: Asabeneh +Date: Thu Jan 9 14:37:16 2020 +0200 + + Merge pull request #40 from Meharban-Singh/master + + All days' exercise links work now + +commit 76052d4659956abb19f00337d30144af592251ab +Merge: 93bbcb7 b285ca4 +Author: Asabeneh +Date: Thu Jan 9 14:34:52 2020 +0200 + + Merge pull request #42 from npnjuguna/npnjuguna-one-line-printFullName-arrow-function-fix + + one line printFullName arrow function fix + +commit e6b77d5adfca7c7f6d777fff3e819fa5bd53afc2 +Author: Meharban Singh +Date: Wed Jan 8 21:03:24 2020 -0500 + + Update readMe.md + +commit 6ce81ed891de69f62dd7ce30256bc1e301f5bea3 +Author: Meharban Singh +Date: Wed Jan 8 21:02:22 2020 -0500 + + Update 02_day_data_types.md + +commit b09f379c44364b33b5f59e4f37384c84d69c9a9e +Author: Meharban Singh +Date: Wed Jan 8 21:01:45 2020 -0500 + + Update 03_booleans_operators_date.md + +commit 0a05493ded07f6022a4a7e31b3971056f42be9ff +Author: Meharban Singh +Date: Wed Jan 8 21:01:05 2020 -0500 + + Update 04_day_conditionals.md + +commit 1a89e1203cb9c5425c8269cfb3bec4e1e3974487 +Author: Meharban Singh +Date: Wed Jan 8 21:00:37 2020 -0500 + + Update 05_day_arrays.md + +commit 5d8d3e3a40c2d6c2ad3dc270b282f4ae920590bd +Author: Meharban Singh +Date: Wed Jan 8 20:59:37 2020 -0500 + + Update 06_day_loops.md + +commit df8b294da3135a5d879ba8fb665b5b4995925d11 +Author: Meharban Singh +Date: Wed Jan 8 20:58:21 2020 -0500 + + Update 08_day_objects.md + +commit 05ef7c00a955bd9908ea98a2d168d68137987eaa +Author: Meharban Singh +Date: Wed Jan 8 20:56:42 2020 -0500 + + Update 07_day_functions.md + +commit de80e92f89dc424be1d7c659f2b0255d7e17713a +Merge: 271fd58 6bae6ef +Author: Meharban Singh +Date: Wed Jan 8 20:53:27 2020 -0500 + + Merge pull request #1 from Meharban-Singh/patch-1 + + Exercise link works + +commit 6bae6ef2702ff54ddab68677a271dc9178dbe2b7 +Author: Meharban Singh +Date: Wed Jan 8 20:50:45 2020 -0500 + + Exercise link works + +commit 271fd5870fa6d20ea2e6c0878f62825a043a05e9 +Author: Meharban Singh +Date: Wed Jan 8 20:48:59 2020 -0500 + + Exercises link work + +commit 93bbcb7f779fd7e9cdcf76db5292c96f85e472ef +Author: Asabeneh +Date: Thu Jan 9 01:15:28 2020 +0200 + + day 8 + +commit 6e2f81bcfb90a17fbe9b064b05754e6723c16f6c +Author: Asabeneh +Date: Thu Jan 9 01:04:10 2020 +0200 + + day 8 + +commit f8863c5dce7f60f6a5a68c9bd55fcb0141fad911 +Author: Asabeneh +Date: Thu Jan 9 00:50:30 2020 +0200 + + day 8 + +commit 7df4d43a3ac92808e5bbcea6c22b3ca730c22674 +Author: Asabeneh +Date: Thu Jan 9 00:43:14 2020 +0200 + + day 8 + +commit 7bbffa9a1f7dfec1e031908a37054e6027662c7e +Author: Asabeneh +Date: Thu Jan 9 00:42:07 2020 +0200 + + day 8 + +commit 0b946d0fb832c2dea505ff7027bedcaa73e61dc5 +Author: Asabeneh +Date: Thu Jan 9 00:34:46 2020 +0200 + + day 8 + +commit 51f31ed96a5ceb7d89b514082fed713f1d234c1a +Author: Asabeneh +Date: Wed Jan 8 19:12:34 2020 +0200 + + cleanig day 7 + +commit 4c6089215df148eafb240d1ae457b496edfb9ecb +Author: Asabeneh +Date: Wed Jan 8 17:39:58 2020 +0200 + + cleanig day 7 + +commit 54718fd74c0f62414b7810aebbf36d6cfc3020fd +Author: Asabeneh +Date: Wed Jan 8 17:37:54 2020 +0200 + + cleanig day 7 + +commit 7e07d086b2b547fd8a8c9063af0c6dba9f431ea3 +Author: Asabeneh +Date: Wed Jan 8 17:11:01 2020 +0200 + + restructuring + +commit b285ca407b5f565b61d6436833015c1db8655c15 +Author: Patrick Njuguna +Date: Wed Jan 8 08:26:12 2020 +0300 + + one line printFullName arrow function fix + +commit 0dd4d7e165a2b82c0c7b61800523d73b3eb3dc8e +Author: Asabeneh +Date: Wed Jan 8 03:25:22 2020 +0200 + + Day error fixes + +commit 6d6a4ddb51ef6a0fdd71cb84edd0c6b3e2a92d4e +Author: Asabeneh +Date: Wed Jan 8 03:22:54 2020 +0200 + + Day Error fixes + +commit 4acb3acd00943fd617aca3275e5a647b771429ab +Author: Asabeneh +Date: Wed Jan 8 02:19:48 2020 +0200 + + day 7 + +commit 4b5024c1be780f0e46be5e2a77e2d9d8cf3a4965 +Author: Asabeneh +Date: Wed Jan 8 02:12:18 2020 +0200 + + day 7 + +commit 6d60db7b5813e9072b918fb21ed36cf372c119e3 +Author: Asabeneh +Date: Wed Jan 8 02:05:57 2020 +0200 + + day 7 + +commit ea19bb164a5d08466be04350e836e5d276825866 +Author: Asabeneh +Date: Wed Jan 8 01:57:14 2020 +0200 + + day 7 + +commit 3d62a9eea152a9c85d836c60548f735bc69d62d1 +Author: Asabeneh +Date: Tue Jan 7 17:45:11 2020 +0200 + + day 5 cleaned + +commit ccd09c65124a4230d45fea7589c9d4d5baf85474 +Merge: e14b51c 3eb887f +Author: Asabeneh +Date: Tue Jan 7 16:00:46 2020 +0200 + + Merge pull request #32 from nyan-lin-tun/fixed-typo-in-day2-markdown + + Change the wrong language name in day 2 markdown + +commit 3eb887f765d3a63d9ec0a078877e02adad0a50f4 +Author: nyan-lin-tun +Date: Tue Jan 7 19:40:12 2020 +0630 + + Change the wrong language name in day 2 markdown + +commit e14b51c09e30a5f84ebf2c9a16c7d9ce00a64e4f +Author: Asabeneh +Date: Mon Jan 6 23:36:13 2020 +0200 + + day 6 + +commit 371ab164bc105657330a16fccab3348774b120b4 +Author: Asabeneh +Date: Mon Jan 6 23:30:38 2020 +0200 + + day 6 + +commit 7e0772ec71822df174109c636248d88443de48dc +Author: Asabeneh +Date: Mon Jan 6 23:23:16 2020 +0200 + + day 6 + +commit 3827787a1f3ba1447bcba8a815388e52f5ab4e55 +Author: Asabeneh +Date: Mon Jan 6 23:05:55 2020 +0200 + + day 6 + +commit 3636679daa2a8c600f1d669690c141e5c47ca75a +Author: Asabeneh +Date: Mon Jan 6 22:59:13 2020 +0200 + + day 6 + +commit d2dc384833d398b93711c6c8e86d3016e31889ed +Author: Asabeneh +Date: Mon Jan 6 22:51:23 2020 +0200 + + day 6 + +commit 7c13013e28b3bfb4d75c03c80a708d3b1fe8a77c +Author: Asabeneh +Date: Mon Jan 6 16:00:52 2020 +0200 + + restructuring + +commit cccf0203cc14b997fadfc848f2725a69df759293 +Author: Asabeneh +Date: Mon Jan 6 15:53:06 2020 +0200 + + restructuring + +commit 5a95f04fb0adf3cfc8b7b0752969db4938e882f0 +Author: Asabeneh +Date: Mon Jan 6 15:40:02 2020 +0200 + + restructuring + +commit 57ab3f2da5f2d146dc23e4cc3273dc27507246cf +Merge: 408bcda 23bf1f4 +Author: Asabeneh +Date: Mon Jan 6 15:08:32 2020 +0200 + + Merge pull request #29 from ermiaswalelgne/master + + Day 5 text, typo and grammar are patched + +commit 23bf1f4349c1f6fbe02debfdd55e309456987c40 +Author: Walelgne Ermias +Date: Mon Jan 6 14:06:47 2020 +0200 + + day 5 text, typ and grammar patched + +commit 408bcdafa35416e5e872e70dad65a3a6d728f34e +Merge: 112ed61 327d9b4 +Author: Asabeneh +Date: Mon Jan 6 07:08:20 2020 +0200 + + Merge pull request #28 from npnjuguna/npnjuguna-unshift-example-fix + + unshift example fix + +commit 327d9b411b30510eb4850353d0e0726564443fb2 +Author: Patrick Njuguna +Date: Mon Jan 6 08:05:21 2020 +0300 + + unshift example fix + +commit 112ed61f03dcdcb175d390a69f3fe8c2a66503e5 +Merge: 105f411 4790a23 +Author: Asabeneh +Date: Mon Jan 6 07:05:14 2020 +0200 + + Merge pull request #27 from npnjuguna/npnjuguna-splice-method-in-array-example-fix + + splice method in array example fix + +commit 105f411e3da23cc7caf63221075ca42c22fc27f9 +Merge: dd35bb6 f318661 +Author: Asabeneh +Date: Mon Jan 6 07:04:33 2020 +0200 + + Merge pull request #26 from npnjuguna/npnjuguna-slice-array-elements-example-fix + + slice array elements example fix + +commit 4790a2317e609ea915040254e3724381c305e266 +Author: Patrick Njuguna +Date: Mon Jan 6 07:59:46 2020 +0300 + + splice method in array example fix + +commit f318661ce093b922cadd225e4ea5439abeeec63b +Author: Patrick Njuguna +Date: Mon Jan 6 07:54:13 2020 +0300 + + slice array elements example fix + +commit dd35bb6b1c3c1439558839014ec1a3aaf62f41e6 +Merge: 980c1e4 4f7583a +Author: Asabeneh +Date: Mon Jan 6 06:45:37 2020 +0200 + + Merge pull request #25 from npnjuguna/npnjuguna-static-values-with-fill-example-fix + + static values with fill example fix + +commit 4f7583ab95c4aa2f4cd2c5a499d8a348789f2190 +Author: Patrick Njuguna +Date: Mon Jan 6 07:42:20 2020 +0300 + + static values with fill example fix + +commit 980c1e479dbf2469bffe090acfdd6102d668439f +Merge: 1c8492e 8ec8b36 +Author: Asabeneh +Date: Mon Jan 6 06:03:37 2020 +0200 + + Merge pull request #23 from npnjuguna/npnjuguna-array-using-splits-example-fix + + array using splits example fix + +commit 1c8492e0c7ce06405805caa35c27da8f18ac78d9 +Merge: 65d269a e8765bd +Author: Asabeneh +Date: Mon Jan 6 06:03:11 2020 +0200 + + Merge pull request #24 from npnjuguna/npnjuguna-array-items-using-index-examples-fix + + array items using index examples fix + +commit 65d269a4387da90b96ec959eef516e5b9eb7198a +Merge: b884b52 148abe0 +Author: Asabeneh +Date: Mon Jan 6 06:02:39 2020 +0200 + + Merge pull request #22 from npnjuguna/npnjuguna-array-different-data-types-example-fix + + array different data types example fix + +commit b884b5292598ff83e15833d16fa2eb47b259210e +Merge: d16e822 c636461 +Author: Asabeneh +Date: Mon Jan 6 05:40:16 2020 +0200 + + Merge pull request #21 from npnjuguna/npnjuguna-create-array-with-values-example-fix + + create array with values example fix + +commit e8765bd580eb23964649db933b98be645368a970 +Author: Patrick Njuguna +Date: Mon Jan 6 06:32:47 2020 +0300 + + array items using index examples fix + +commit 8ec8b3650b43d49228b3591f74ba0a3dd3515cbe +Author: Patrick Njuguna +Date: Mon Jan 6 06:20:04 2020 +0300 + + array using splits example fix + + to avoid using already defined text property definition + +commit 148abe07925ffd249490b9be51a1d5230b26eb7b +Author: Patrick Njuguna +Date: Mon Jan 6 06:11:38 2020 +0300 + + array different data types example fix + +commit c636461c0b6615f0b316883f7d7a6e2c608d7ffb +Author: Patrick Njuguna +Date: Mon Jan 6 06:04:22 2020 +0300 + + create array with values example fix + +commit d16e82245ab3c17531e189c2a438599c04c7e813 +Author: Asabeneh +Date: Mon Jan 6 04:24:21 2020 +0200 + + cleaning + +commit 58006b135e88d923baed2344d59756a0d839282d +Author: Asabeneh +Date: Mon Jan 6 04:22:46 2020 +0200 + + cleaning + +commit d3147ec07908878ef9f44a4af4c37a81f982f8ef +Author: Asabeneh +Date: Mon Jan 6 04:18:00 2020 +0200 + + cleaning + +commit d58138e5406a08d3914384d3d11b5b64c631b51b +Author: Asabeneh +Date: Mon Jan 6 04:15:22 2020 +0200 + + cleaning + +commit 48ad1d6cf5b5717a427a54b1e5189ad1a8685efb +Author: Asabeneh +Date: Mon Jan 6 04:02:20 2020 +0200 + + some cleaning + +commit b6a158d0e91a73edd3734b2d6a2b62b1467b8923 +Author: Asabeneh +Date: Mon Jan 6 03:49:33 2020 +0200 + + fixing link + +commit 9cb347b9bcc528147765b165d6b02430e7ffaa69 +Author: Asabeneh +Date: Mon Jan 6 03:40:05 2020 +0200 + + day 5 + +commit 9a0a37e60695b3628c8b1bd03afa04d225ae5120 +Author: Asabeneh +Date: Mon Jan 6 03:34:45 2020 +0200 + + day 5 + +commit 27c857d29db11685a1660cc422e2771a819d88ba +Author: Asabeneh +Date: Mon Jan 6 03:23:29 2020 +0200 + + day 5 + +commit fc0b62b7f68b8d42943373ae039b22a24e032747 +Author: Asabeneh +Date: Sun Jan 5 16:02:08 2020 +0200 + + some fixes + +commit 73a400583bca573a12ea3b769dcd616a2d9f1d69 +Merge: e403247 9ebad7b +Author: Asabeneh +Date: Sun Jan 5 15:09:24 2020 +0200 + + Merge pull request #17 from npnjuguna/npnjuguna-else-if-text-typo-fix + + else if text typo fix + +commit e403247a8dfc932753b33696606195a456f756f9 +Merge: cdc8246 acc584a +Author: Asabeneh +Date: Sun Jan 5 15:08:37 2020 +0200 + + Merge pull request #18 from npnjuguna/npnjuguna-if-else-if-example-fix + + if else if example fix + +commit cdc824634ea151cd59dca50447b4191e2a96497c +Merge: 5b047b9 8bee3d4 +Author: Asabeneh +Date: Sun Jan 5 15:07:42 2020 +0200 + + Merge pull request #16 from diegodario88/fix + + fix extra space + +commit acc584a52f85924fe43aa218dea151c74e925d47 +Author: Patrick Njuguna +Date: Sun Jan 5 06:21:06 2020 +0300 + + if else if example fix + +commit 9ebad7b6d1d17c8f79b73d0074cbf7bc0b24d75e +Author: Patrick Njuguna +Date: Sun Jan 5 06:10:24 2020 +0300 + + else if text typo fix + +commit 8bee3d4422aebd01c5fa1d685cde9d956e352cf9 +Author: Diego Dario +Date: Sat Jan 4 22:48:35 2020 -0300 + + fix extra space + +commit 5b047b93f46a9b50f22d9e258c4b5a24ec4a035d +Author: Asabeneh +Date: Sun Jan 5 02:06:16 2020 +0200 + + content restructured + +commit 24752f9b2963f797beee18d7ac7d6e919e08d371 +Author: Asabeneh +Date: Sun Jan 5 02:01:19 2020 +0200 + + content restructured + +commit d8e0fe2fe9ef60a0135f9d812176a5f0a44bf113 +Author: Asabeneh +Date: Sun Jan 5 01:50:18 2020 +0200 + + content restructured + +commit 0e8a4aa3befba50d3b36602c1455b43480d9487b +Author: Asabeneh +Date: Sun Jan 5 01:13:10 2020 +0200 + + content restructured + +commit 07e02ec446eac1ab5a9753c8756c12000eb312f5 +Author: Asabeneh +Date: Sun Jan 5 01:01:12 2020 +0200 + + content restructured + +commit ea884ca9e820265bd79b3b783b0bcccbad706418 +Author: Asabeneh +Date: Sun Jan 5 00:47:45 2020 +0200 + + content restructured + +commit 668f626c0d39b11198749be72efed69dd2279b2c +Author: Asabeneh +Date: Sat Jan 4 23:57:39 2020 +0200 + + content restructured + +commit d73c98560a31d084db1671d512f3c2a13d2fc5dc +Author: Asabeneh +Date: Sat Jan 4 22:46:23 2020 +0200 + + day 4 + +commit 7e32df25528d40cb3aa2d2239f0f178149bae26d +Author: Asabeneh +Date: Sat Jan 4 22:43:50 2020 +0200 + + day 4 + +commit 10347cfe07847c1a1170836aafc283524bbe5a38 +Author: Asabeneh +Date: Sat Jan 4 22:35:13 2020 +0200 + + day 4 + +commit 052c896004028e3cc7c12b9fc4b086c9db8c48bc +Author: Asabeneh +Date: Sat Jan 4 20:35:07 2020 +0200 + + question add to day 2 + +commit 109979e438eb55fd5e3d378a44d01eb2590e5fb4 +Author: Asabeneh +Date: Sat Jan 4 20:07:05 2020 +0200 + + restructuring files + +commit 28dc2d5c239887c844095fc4a0ffd53f8fdf0c4a +Author: Asabeneh +Date: Sat Jan 4 17:01:32 2020 +0200 + + restructuring files + +commit 9adc1631c6d514ae343f125ceaa208c009816d05 +Author: Asabeneh +Date: Sat Jan 4 16:54:41 2020 +0200 + + restructuring files + +commit fdbba29ce6f95dbf3c3221d379f6f7bb9af76565 +Author: Asabeneh +Date: Sat Jan 4 16:26:59 2020 +0200 + + restructuring files + +commit 075d41207f5f6bdc4cd6cd2a28d07a17597917df +Author: Asabeneh +Date: Sat Jan 4 16:23:23 2020 +0200 + + restructuring files + +commit 35abce50bb9249cf4f1201b1ee97741e7ae5d40c +Author: Asabeneh +Date: Sat Jan 4 15:47:38 2020 +0200 + + restructuring files + +commit 2cefc1adda02761b98211a6231dc04256ada79aa +Author: Asabeneh +Date: Sat Jan 4 15:41:53 2020 +0200 + + restructuring files + +commit 26c53809d3b2fbaf212c0132716945b4cb994010 +Author: Asabeneh +Date: Sat Jan 4 15:11:51 2020 +0200 + + cleaning day 1 day 2 day3 + +commit e1aaaa8c87bbfa409fbcfa42cbc8a6a7d53f8137 +Merge: 39d469e 38e670d +Author: Asabeneh +Date: Sat Jan 4 14:45:15 2020 +0200 + + Merge pull request #15 from npnjuguna/npnjuguna-getSeconds-example-fix + + getSeconds example fix + +commit 38e670da5ff31b658bc88ad537c81aa4e271e0e4 +Author: Patrick Njuguna +Date: Sat Jan 4 15:35:05 2020 +0300 + + getSeconds example fix + +commit 39d469e0a9ff55bb80537ca18943c407a31e0b78 +Author: Asabeneh +Date: Sat Jan 4 07:22:26 2020 +0200 + + Fixing errors + +commit 903e2dcb61c2f32628b7a43837076a78287b9c9f +Author: Asabeneh +Date: Sat Jan 4 07:12:49 2020 +0200 + + content added + +commit b85b314c17435c0cf2854cc243fbcd5c8344c829 +Author: Asabeneh +Date: Sat Jan 4 07:10:26 2020 +0200 + + content added + +commit 05fc3c609d0fa9e9d2c43bef7de62607145aabb2 +Author: Asabeneh +Date: Sat Jan 4 05:51:30 2020 +0200 + + content added + +commit 40b665309e9b536a3cfdf9da09d3d0db6287b775 +Author: Asabeneh +Date: Sat Jan 4 05:37:02 2020 +0200 + + content added + +commit 48ab0c09bbf7793cac7c7f135a0551a056bd5b55 +Author: Asabeneh +Date: Sat Jan 4 04:59:24 2020 +0200 + + fixing errors + +commit 20cdf019c5b30d739b3a0b2b28e2eb359ecd1556 +Author: Asabeneh +Date: Sat Jan 4 04:51:50 2020 +0200 + + Fixing errors + +commit 11842f4261b2682cb818d87400927c00d0f61cb7 +Author: Asabeneh +Date: Sat Jan 4 04:49:25 2020 +0200 + + Fixing error + +commit ce6b9fc96d4dbeb116c7673a4253b5243bf6eaa5 +Author: Asabeneh +Date: Sat Jan 4 02:04:10 2020 +0200 + + day 3 + +commit d0b95e7c4dea4c43ecd2cd2e65be42f0ffb32c56 +Author: Asabeneh +Date: Sat Jan 4 01:59:41 2020 +0200 + + day 3 + +commit b6fd2c6e94078c5de47bf22eb8c6f4336cbd229c +Author: Asabeneh +Date: Sat Jan 4 00:07:12 2020 +0200 + + day 2 fixes + +commit 7f825ed1615de6659d387d24cbd91f040f2801cf +Author: Asabeneh +Date: Fri Jan 3 23:30:44 2020 +0200 + + day 2 fixes + +commit 2818105c4670893f1a250d42522869a6ebc04bb4 +Author: Asabeneh +Date: Fri Jan 3 22:29:34 2020 +0200 + + day 2 fixes + +commit 3df0f60daa55d183e040820265118d78fa865518 +Merge: 9e23edf 9abd626 +Author: Asabeneh +Date: Fri Jan 3 22:19:44 2020 +0200 + + Merge pull request #10 from ermiaswalelgne/master + + Day one and day to ---fixed typo, grammar and texts + +commit 9abd6262e0fc283be8156761f58510ae39bdd18f +Author: Walelgne Ermias +Date: Fri Jan 3 22:08:34 2020 +0200 + + Day one and day to ---fixed typo, grammar and texts + +commit 9e23edfdd6f537e4ccff5d0b399d5ecbcb261c91 +Merge: 2893300 963d2ce +Author: Asabeneh +Date: Fri Jan 3 22:07:31 2020 +0200 + + Merge pull request #8 from npnjuguna/npnjuguna-match-example-fix + + match string function example fix + +commit 28933001c1d6b83743320f4649326e77abe7f349 +Merge: 326b70d e29c114 +Author: Asabeneh +Date: Fri Jan 3 22:06:43 2020 +0200 + + Merge pull request #9 from npnjuguna/npnjuguna-arithmetic-operators-example-fix + + arithmetic operators example fix + +commit e29c114428b880f79effc904e5603253abad0634 +Author: Patrick Njuguna +Date: Fri Jan 3 19:44:00 2020 +0300 + + fix to arithmetic operators example + +commit 963d2ceb42a894afeb4d35316e56aee6f0cfd90d +Author: Patrick Njuguna +Date: Fri Jan 3 19:29:49 2020 +0300 + + fix to match string example + +commit 90b1476e9c6e5ff80e08dddf9c800b98be306510 +Merge: f23b774 326b70d +Author: Patrick Njuguna +Date: Fri Jan 3 19:12:42 2020 +0300 + + Merge branch 'master' of https://github.com/Asabeneh/30DaysOfJavaScript + +commit 326b70db9341b08c5035dae4e9e2184852e0eabd +Author: Asabeneh +Date: Fri Jan 3 16:04:07 2020 +0200 + + script files added + +commit 5aeb038f5745e87c5efc254005e8d09257852d61 +Author: Asabeneh +Date: Fri Jan 3 16:01:10 2020 +0200 + + script files added + +commit 947a6ca79bc8b8675472f942b9135cff987d6fae +Author: Asabeneh +Date: Fri Jan 3 14:39:27 2020 +0200 + + day 2 fixes + +commit b257090510bcbef49d8a4f4ab395fb45c101b1bf +Author: Asabeneh +Date: Fri Jan 3 14:30:53 2020 +0200 + + day 2 fixes + +commit c1095b9fd5eb6a91d9c0b6bfc7903e1b5d4b110c +Author: Asabeneh +Date: Fri Jan 3 12:50:31 2020 +0200 + + day 2 fixes + +commit 9960c823b5961b8323210a4d2c1fa2e56b8c520d +Merge: b8ad02f 6ef058f +Author: Asabeneh +Date: Fri Jan 3 12:07:02 2020 +0200 + + python codes removed + +commit b8ad02ffaae63fb1af61304ef7bd63e42eade0e5 +Author: Asabeneh +Date: Fri Jan 3 12:04:37 2020 +0200 + + python codes removed + +commit f23b7745a074bdb6a3181390c74826b2f370d2cf +Merge: 5a3f62b 6ef058f +Author: Patrick Njuguna +Date: Fri Jan 3 12:25:52 2020 +0300 + + Merge pull request #1 from Asabeneh/master + + sync with upstream + +commit 6ef058f3838bee94a8b9cd4637049114f3528b58 +Author: Asabeneh +Date: Fri Jan 3 03:21:40 2020 +0200 + + Fixes + +commit 83f1a5e61587d6bfaa6ab2a669c3627e24d4ee0a +Author: Asabeneh +Date: Fri Jan 3 03:01:28 2020 +0200 + + day 2 + +commit c71408f538e8a7b07336bd60e23bd4362f5ce579 +Author: Asabeneh +Date: Fri Jan 3 03:00:06 2020 +0200 + + day 2 + +commit 1507caf8a3e6d8325f94bdb5f1a33bb01d15a16a +Author: Asabeneh +Date: Fri Jan 3 02:50:55 2020 +0200 + + day 2 + +commit 5e27ca8ffd9742ffc2b994120b3a033a75ec074a +Merge: cf3ee67 d472181 +Author: Asabeneh +Date: Thu Jan 2 19:16:28 2020 +0200 + + Merge pull request #3 from JCorrivo/patch-1 + + Fix filename typo + +commit cf3ee67fba8fefe509dc43f2213ce584b46b4588 +Merge: 9e5cf32 4a5dbf5 +Author: Asabeneh +Date: Thu Jan 2 19:15:39 2020 +0200 + + Merge pull request #2 from akaustav/toc-fix + + fix: link to exercises in table of contents + +commit d4721810c6258237d7b7c925417099dc41792b0d +Author: JCorrivo +Date: Thu Jan 2 09:21:19 2020 -0500 + + Fix filename typo + +commit 4a5dbf588c6ea90ca8b1268a057791d95309de28 +Author: Ameet Kaustav +Date: Thu Jan 2 06:57:40 2020 -0700 + + fix: link to exercises in table of contents + +commit 9e5cf32e994e7ff1b0cecc21c9f3eee7f05e2cb6 +Author: Asabeneh +Date: Thu Jan 2 11:51:58 2020 +0200 + + some fixes + +commit 6b494b7c50feb896d28232575b282a8c6fd5c2ac +Merge: 1ede251 5a3f62b +Author: Asabeneh +Date: Thu Jan 2 10:21:33 2020 +0200 + + fixes + +commit 1ede2511ba850e7f93aa96e894fab14f2e133469 +Author: Asabeneh +Date: Thu Jan 2 10:19:28 2020 +0200 + + fixes + +commit 5a3f62bc8017b8fee72007604aff6ea1fc6203ee +Author: Asabeneh +Date: Thu Jan 2 00:18:46 2020 +0200 + + Fixes + +commit 6b21e8b267eb84385d6752e38247325bf2a0489a +Author: Asabeneh +Date: Thu Jan 2 00:15:16 2020 +0200 + + Fixes + +commit 4ffbb84d98ae2102d5ded8a6c71581138d3e6cc7 +Author: Asabeneh +Date: Thu Jan 2 00:11:28 2020 +0200 + + Typo Fixes + +commit 1326bf8254688896d8ebd515288f52a8c248993b +Author: Asabeneh +Date: Thu Jan 2 00:02:43 2020 +0200 + + Typo fixes + +commit 24df9f13b8de8e0cdc86e56ab0b21655440cad21 +Author: Asabeneh +Date: Wed Jan 1 21:41:36 2020 +0200 + + day 1