Skip to content
This repository has been archived by the owner on Oct 26, 2020. It is now read-only.

Bashir week 5 #1012

Open
wants to merge 53 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
d0eb2ef
added notes to w2-j4
Ashaghel Apr 26, 2020
c30ee0f
Hakona Matata Anthony and Ahmad
Ashaghel Apr 26, 2020
74e3f46
fix minor spelling and grammatical errors
Apr 27, 2020
6fcaeb5
editing exercises for week3 mcr3
Ashaghel May 1, 2020
468db41
Update 5-journey-planner.js
Ashaghel May 2, 2020
6163944
Update 0- Introduction.md
Ashaghel May 2, 2020
9346bcb
added info on every and some to exercise 2
Augs0 May 2, 2020
960c002
fixed formatting
Augs0 May 2, 2020
c5786a9
added info on replace and substring
Augs0 May 2, 2020
eb54bc5
Modify description and add extra tests to exercise week-3/4-eligible-…
zoltan-gal May 2, 2020
191b122
fix syntax
zoltan-gal May 2, 2020
e20bef6
Add extra exercise to week-3/4-eligible-students
zoltan-gal May 2, 2020
7905332
added small note
Ashaghel May 2, 2020
6c489f4
Added more instructions
Ashaghel May 2, 2020
ce4cdb0
changed function name
Ashaghel May 2, 2020
46747c0
Update 6-lane-names.js
Ashaghel May 2, 2020
1422133
formating
Ashaghel May 2, 2020
4feab6b
Add more details and restructure journey planner exercise
zoltan-gal May 2, 2020
349fee5
Reformatting journey planner description
zoltan-gal May 2, 2020
fe6726a
Add extra challange tip to journey planner
zoltan-gal May 2, 2020
9678006
Add examples and tweak descriptions
zoltan-gal May 2, 2020
222a34b
tweak week-3 intro description
zoltan-gal May 2, 2020
ccc11b5
tweak week-3 intro description
zoltan-gal May 2, 2020
7a91d2e
fix text
zoltan-gal May 2, 2020
1a7abaf
Improve examples in ex4
zoltan-gal May 2, 2020
e84f22f
Merge remote-tracking branch 'origin/master' into manchester3
zoltan-gal May 15, 2020
f8f41b0
more info
Ashaghel May 16, 2020
68f6d79
Create forinLoop.js
Ashaghel May 16, 2020
57dc8b0
Select freecodecamp resource list
zoltan-gal May 16, 2020
891b2aa
Add extra exercise and description to writers exercise
zoltan-gal May 16, 2020
e50722e
Add extra exercises to water bottle exercise
zoltan-gal May 16, 2020
02492c9
Remove extra resources recommendations that have not been taught yet
zoltan-gal May 16, 2020
394aab1
Merge branch 'manchester3' of github.com:CodeYourFuture/js-exercises …
zoltan-gal May 16, 2020
1feffbe
Rewrite grocery list exercise
zoltan-gal May 16, 2020
4a1fa48
Fix week-4 exercise issues
zoltan-gal May 16, 2020
a3c1d0c
more reading
Ashaghel May 16, 2020
393cab1
Update 1-freecodecamp.md
Ashaghel May 16, 2020
05218bc
Update extra-homework.md
Ashaghel May 16, 2020
f836b89
Update 1-freecodecamp.md
Ashaghel May 16, 2020
90f6f0b
Update 1-freecodecamp.md
Ashaghel May 16, 2020
a4055ca
Update 1-freecodecamp.md
Ashaghel May 16, 2020
e559c9a
Update 2-writers.js
Ashaghel May 16, 2020
9b87a3e
fix description
zoltan-gal May 17, 2020
793cd96
tweak description
zoltan-gal May 17, 2020
1d25f8e
Update 2-writers.js
May 19, 2020
55efde1
fix wording
zoltan-gal May 20, 2020
27ce362
Rewrite week-5/2-exercises
zoltan-gal May 29, 2020
f555e27
Rewrite week-5/3-project
zoltan-gal May 29, 2020
6053f8e
tweak khanakademy hw descriptions
zoltan-gal May 29, 2020
37bc38e
add extra description to week-5, exercise 3
zoltan-gal May 30, 2020
6409675
fix link
zoltan-gal May 31, 2020
94bce3f
Update exercises.js
bash93 Jun 12, 2020
b624352
Update main.js
bash93 Jun 12, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
tweak description
  • Loading branch information
zoltan-gal committed May 17, 2020
commit 793cd9632e3eb0a1b045b528febff11244f35b6d
4 changes: 2 additions & 2 deletions week-4/Homework/mandatory/2-writers.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ let writers = [

/*
Exercise 1:
Loop through the Array, and for each object, `console.log()` out the sentence and
Loop through the Array, and for each object, `console.log()` out the below sentence and
insert corresponding values to the place holder that are indicated in courle braces:
"Hi, my name is {firstName} {lastName}. I am {age} years old, and work as a {occupation}."
*/
Expand All @@ -59,7 +59,7 @@ Exercise 1:
/*
Exercise 2:
Only `console.log()` out the writers who are in their 40s (meaning between 40 and 49)
and not with us anymore using the below sentence format:
and not with us anymore, use the below sentence format:
"Writer {firstName} {lastName} died at {age} years old."
*/

Expand Down