Your First RPG

Languages
En

Chapter 3

  1. #3.0 🛣️ Stepping into Coding
  2. #3.1 📊 Basic Data Types
  3. #3.2 🔨 Essential Tools

#3.0 🛣️ Stepping into Coding


Youtube Video
(this video is a joke)

How is JS (JavaScript) code written? JavaScript code is just a series of code expressions (like putting together a bunch of little logic models like legos) that are run by the JavaScript Interpreter in a particular order. Each line of code is evaluated one at a time from top to bottom and left-to-right like English. The interpreter also understands and applies the rules of PEMDAS. Your goal should be to write code that is easy to understand, this will help you make awesome programs.

In this section you will learn how to use logic to write your first code, hurray! Take it at your own pace so you don't get overwhelmed, and I promise coding can be fun! I'm going to be providing many examples, and if you get confused it's okay to continue on and come back later. Playing around with code is one of the best ways to have a wonderful "aha moment".