diff --git a/subjects/tell-me-vip/README.md b/subjects/tell-me-vip/README.md index 3692b8b6..2cec83e6 100644 --- a/subjects/tell-me-vip/README.md +++ b/subjects/tell-me-vip/README.md @@ -2,7 +2,11 @@ ### Instructions -Create a `tell-me-vip.mjs` script that filters the guests who actually answered 'YES' to your invitation, and save this list in a `vip.txt` file. +Create a `tell-me-vip.mjs` script that filters the guests who actually answered +'YES' to your invitation, and save this list in a `vip.txt` file. + +The output must print one guest per line, in ascending alphabetic +order, and formated as following: `Number. Lastname Firstname` (starting from 1). ### Notions diff --git a/subjects/tell-me-who/README.md b/subjects/tell-me-who/README.md index 01c8d07a..390873b0 100644 --- a/subjects/tell-me-who/README.md +++ b/subjects/tell-me-who/README.md @@ -2,10 +2,15 @@ ### Instructions -Create a `tell-me-how-who.mjs` script that takes your folder path as an argument and print the names of the guests that answered to your invitation in the console. -The output must print one guest per line, in ascending alphabetic order, and formated as following: `Number. Lastname Firstname` (number beginning at 1). +Create a `tell-me-who.mjs` script that takes your folder path as an argument +and print the names of the guests that answered to your invitation in the +console. + +The output must print one guest per line, in ascending alphabetic +order, and formated as following: `Number. Lastname Firstname` (starting from 1). ### Notions + - [Node file system: `readdir`](https://nodejs.org/api/fs.html#fs_fspromises_readdir_path_options) - [`Array.prototype.map()` method](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map) - [`String.prototype.split()` method](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/split) @@ -13,4 +18,3 @@ The output must print one guest per line, in ascending alphabetic order, and for - [`String.prototype.slice()` method](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/slice) - [`String.prototype.concat()` method](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/concat) - [`Array.prototype.sort()` method](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort) -