Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes the headings markdown. #2

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
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
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
#Learning JavaScript with Codewars & Codecademy
# Learning JavaScript with Codewars & Codecademy

[Codecademy](https://www.codecademy.com) and [Codewars](https://www.codewars.com) are two fantastic resources for learning JavaScript. Whether you are looking to apply to Founders & Coders (in which case they are necessary) or just want to learn, completing Codecademy’s JavaScript course and then solving some katas on Codewars is a great learning route. Good as these resources are, if you are new to programming, they are not always 100% straightforward and can leave you confused. Here are some tips on what to do when you get stuck.


##Codecademy
## Codecademy
If you are completely new this the best place to start.

1. If you are stuck re-read the info in the side panel (sounds obvious but I often forgot to do this).
2. Check out the Q&A forum (click ‘Get Help’ in the bottom-right of the screen, select ‘I need help with this exercise’ and follow the link to the forum), people often have similar problems and there are a few bugs which can be picked up here. **Warning:** forum posts may contain spoilers.


##Codewars
## Codewars
Once you have some basic knowledge of JavaScript, it’s time to start using your knowledge solving problems, or “kata”, on Codewars.

1. The tips mentioned above for Codecademy are also useful here.
Expand All @@ -25,12 +25,12 @@ Once you have some basic knowledge of JavaScript, it’s time to start using you
6. Write your own kata - Codewars gives you lots of credit for this.
7. Once you have completed a kata and can see the solutions, compare yours to the top rated solution. Try to spend a little time studying the methods and approaches used in the top solutions, as this will help you understand other JavaScript methods and more elegant ways of solving problems.

##General tips
## General tips
- **GOOGLE EVERYTHING.** Seriously. If you’re stuck with a particular part of your code just search for the problem. The answer will be out there somewhere, it’s just a matter of formulating the correct question and using the correct terminology. Mozilla Developer Network (MDN) and Stack Overflow are great websites for this. w3schools is ok but a bit more basic. While it can be very tempting just to paste in code you’ve found, it always pays off to try to understand how it’s working – it will save you time later!
- `console.log()` is an essential way to help you complete challenges. You’ll often need to see exactly which cases your code is failing at, or what the value of a variable is at any given stage. Remember you’ll need to hit the run tests or submit button to see the output displayed.
- Use an online code editor like [repl.it] (https://repl.it/) to check your code is working, tweak your code and see if you can get it to behave the way you want.
- Use an online code editor like [repl.it](https://repl.it/) to check your code is working, tweak your code and see if you can get it to behave the way you want.
- For longer and more complex problems, try to break down the problem and write a solution using pseudo code (code in note form – it doesn’t need to run correctly or be syntactically correct).
- Don’t be afraid of pen and paper, it can be invaluable in helping you understand challenging processes like recursion.

##Links
[Ok, so you want to learn how to code.] (https://medium.com/@charlotteis/ok-so-you-want-to-learn-how-to-code-b74bc3ac6107)
## Links
[Ok, so you want to learn how to code.](https://medium.com/@charlotteis/ok-so-you-want-to-learn-how-to-code-b74bc3ac6107)