Files
bitburner-src/src/Documentation/ui/doc/programming/learn.md
T
2023-07-12 17:10:52 -04:00

1.7 KiB

Learn to Program in Javascript

For Beginner Programmers

If you have little to no programming experience, that's okay! You don't need to be a great programmer in order to enjoy or play this game. In fact, this game could help you learn some basic programming concepts.

Here are some good tutorials for learning programming/JavaScript as a beginner:

For Experienced Programmers

The following section lists several good tutorials/resources for those who have experience programming but who have not worked extensively with JavaScript before.

Before that, however, it's important to clarify some terminology about the different versions of JavaScript. These are summarized in this article:

WTF is ES6, ES8, ES2017, ECMAScript...

An important takeaway from this article is that ES6, also known as ES2015, introduced many major features that are commonly seen in modern JavaScript programming. However, this means that ES5 engines and interpreters will fail if they encounters these ES6 features. You'll see why this is important further down.