From 36e36b5278a194fb42aaa3b3892cc714d5652aba Mon Sep 17 00:00:00 2001 From: HiddenOgre28 <72028038+HiddenOgre28@users.noreply.github.com> Date: Thu, 25 Nov 2021 09:19:17 -0300 Subject: [PATCH 1/3] Fixed a typo in line 41 Corrected the word "this" so it starts with an upper case "T". --- 01_helloWorld/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01_helloWorld/README.md b/01_helloWorld/README.md index 17f7110..d4b267e 100644 --- a/01_helloWorld/README.md +++ b/01_helloWorld/README.md @@ -38,7 +38,7 @@ Go ahead and see if you can make the test pass by editing the return value of th Just to make sure, in case you're confused at this point, the test is telling you that running the function `helloWorld` should return the phrase `Hello, World!`. Punctuation and capitalization definitely matter here, so double check that if the test still isn't passing. -this is what the final function should look like: +This is what the final function should look like: ```javascript const helloWorld = function() { return 'Hello, World!' From 6527372e9415f907d8ce9b99a674b89e11f8ee6a Mon Sep 17 00:00:00 2001 From: chagstep1 <43247844+chagstep1@users.noreply.github.com> Date: Mon, 27 Dec 2021 19:32:43 +0300 Subject: [PATCH 2/3] Remove predefined parameter from reverseString.js Making it consistent with other exercise setups --- 03_reverseString/reverseString.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03_reverseString/reverseString.js b/03_reverseString/reverseString.js index b6d0a9a..f6790f0 100644 --- a/03_reverseString/reverseString.js +++ b/03_reverseString/reverseString.js @@ -1,4 +1,4 @@ -const reverseString = function(str) { +const reverseString = function() { }; From 7a9377f6750582dac099469a1b02d0b0e168baa6 Mon Sep 17 00:00:00 2001 From: conor Date: Tue, 18 Jan 2022 21:09:59 +0000 Subject: [PATCH 3/3] Update NPM instruction to new lesson link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ee10520..3ed997a 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ There will eventually be a suggested order of completion, but at this time since ## How To Use These Exercises Before you start you should have a few things installed on your machine: -1. **NPM**. To check if you have NPM installed, type `npm --version` in your terminal. If you get back `Command 'npm' not found, but can be installed with:`, do NOT follow the instructions in the terminal to install with `apt-get`. (This causes permission issues.) Instead, install Node with NVM by following the instructions [here](https://github.com/TheOdinProject/curriculum/blob/master/foundations/installations/installing_node.md). +1. **NPM**. We should have installed NPM already in [this Installing Node.js lesson](https://www.theodinproject.com/paths/foundations/courses/foundations/lessons/installing-node-js). Just in case you need to check, type `npm --version` in your terminal. If you get back `Command 'npm' not found, but can be installed with:`, do NOT follow the instructions in the terminal to install with `apt-get`. (This causes permission issues.) Instead, go back to the installation lesson and install Node with NVM by following the instructions there. 2. **A copy of this repository**. Copies of repositories on your machine are called clones. If you need help cloning, you can learn how [here](https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/cloning-a-repository). 3. **Jest**. After cloning this repository to your local machine, go into the newly created directory (`cd javascript-exercises`) and run `npm install`. This will install Jest and set up the testing platform based on our preconfigured settings.