diff --git a/subjects/get-some-time/README.md b/subjects/get-some-time/README.md index 76af4cb0d..eb6f1d6df 100644 --- a/subjects/get-some-time/README.md +++ b/subjects/get-some-time/README.md @@ -4,8 +4,11 @@ Create a function `firstDayWeek` that receives a week of the year (from 1 to 53) and a year (as a string), and returns the first day -of that week, in the format: 'dd-mm-yyyy'. By beginning of the week -we mean the monday of that week. +of that week, in the format: 'dd-mm-yyyy'. + +In this task you have to assume that the `week #1` is in all cases the week which contains the 1st of January. + +By beginning of the week we mean the monday of that week. If the first week is requested and it starts on the previous year of the presented one, it should return the first day of the year. diff --git a/subjects/index-of/README.md b/subjects/index-of/README.md index b41f7384c..17ba0b5ed 100644 --- a/subjects/index-of/README.md +++ b/subjects/index-of/README.md @@ -4,15 +4,15 @@ Create 3 functions: -- `indexOf` which returns the index of the first occurence of a value and takes as arguments an array to be searched, the value to be matched, and optionally the index from where to start searching from. -- `lastIndexOf` which works just like the previous function but returns the index of the last occurence of a value +- `indexOf` which returns the index of the first occurrence of a value and takes as arguments an array to be searched, the value to be matched, and optionally the index from where to start searching from. +- `lastIndexOf` which works just like the previous function but returns the index of the last occurrence of a value - `includes` which returns true if the value was found in the array > If a value is not found, the returned index is -1 > functions should have an array element as first argument, > both `indexOf` and `lastIndexOf` take an additional `fromIndex` argument -> that allows you to begin searching from a specific index. +> that allows you to begin searching from a specific index and it will work exactly like in the original methods. ### Notions @@ -22,7 +22,7 @@ Create 3 functions: ### Code provided -> all code provided will be added to your solution and doesn't need to be submited. +> all code provided will be added to your solution and doesn't need to be submitted. ```js Array.prototype.indexOf = undefined diff --git a/subjects/real-time-forum/audit/README.md b/subjects/real-time-forum/audit/README.md index c7c52e6f3..148226368 100644 --- a/subjects/real-time-forum/audit/README.md +++ b/subjects/real-time-forum/audit/README.md @@ -1,6 +1,6 @@ #### Functional -###### Has the requirement for the allowed packages been respected? (Reminder for this project: only [standard packages](https://golang.org/pkg/)) +###### Has the requirement for the allowed packages been respected? (Check the [allowed packages](../README.md)) ###### Do you need to register/login in the forum to use it? diff --git a/subjects/real-time-forum/typing-in-progress/audit.md b/subjects/real-time-forum/typing-in-progress/audit.md index dfb1169a6..02f7331c1 100644 --- a/subjects/real-time-forum/typing-in-progress/audit.md +++ b/subjects/real-time-forum/typing-in-progress/audit.md @@ -1,6 +1,6 @@ #### Functional -###### Has the requirement for the allowed packages been respected? (Reminder for this project: only [standard packages](https://golang.org/pkg/)) +###### Has the requirement for the allowed packages been respected? (Check the [allowed packages](README.md)) ##### Open two browsers (ex: Chrome and Firefox or private windows) and log in with different users in each one. With one user start typing. diff --git a/subjects/rebecca-black/README.md b/subjects/rebecca-black/README.md index 6d78ca19e..c32f52e97 100644 --- a/subjects/rebecca-black/README.md +++ b/subjects/rebecca-black/README.md @@ -6,7 +6,7 @@ Create the following functions: - `isFriday` returns true if the date is a friday - `isWeekend` returns true if the date is a day of the weekend -- `isLeapYear` returns true if the year is a leap year +- `isLeapYear` returns true if the year of the date is a leap year - `isLastDayOfMonth` returns true if the date is the last day of the month ### Notions diff --git a/subjects/using-map/README.md b/subjects/using-map/README.md index 4eea45d2e..9329e93a3 100644 --- a/subjects/using-map/README.md +++ b/subjects/using-map/README.md @@ -2,8 +2,7 @@ ### Instructions -- Create a function named `citiesOnly` which takes an array of objects - and which return an array of strings from the key `city`. +- Create a function named `citiesOnly` which takes an array of objects and which return an array of strings from the key `city`. #### Example: @@ -21,7 +20,7 @@ citiesOnly([ ``` - Create a function named `upperCasingStates` which takes an array of strings - and which Upper Case each words of a string. \ + and which Upper Case the first letter of each word in a string. \ The function returns then an array of strings. #### Example: