diff --git a/up & going/README.md b/up & going/README.md index 4e4b18d04..04e9bebc2 100644 --- a/up & going/README.md +++ b/up & going/README.md @@ -9,5 +9,5 @@ [Table of Contents](toc.md) * [Preface](../preface.md) -* [Chapter 1: TODO](ch1.md) +* [Chapter 1: Into Programming](ch1.md) * [Appendix A: Thank You's!](apA.md) diff --git a/up & going/ch1.md b/up & going/ch1.md index 098f2098a..630598515 100644 --- a/up & going/ch1.md +++ b/up & going/ch1.md @@ -1,6 +1,18 @@ # You Don't Know JS: Up & Going -# Chapter 1: TODO +# Chapter 1: Into Programming -// TODO +Welcome to the *"You Don't Know JS"* (YDKJS) book series. This book serves as an introduction to important concepts in general programming, JavaScript specifically, and finally how to approach and understand the rest of the books in the series. + +This chapter will explain the basic principles of programming in modern languages, at a very high level. It's intended if you are reading this but have little to no prior programming experience and are looking to the YDKJS books to help you along your path to understanding programming through the lens of JS. + +If you have more than 2 months experience with programming with any modern language, you can probably safely skip over this chapter and jump straight into Chapter 2 *"Into JavaScript"*. + +## Variables + +## Conditionals + +## Loops + +## Functions ## Summary diff --git a/up & going/toc.md b/up & going/toc.md index f92454459..f7c169d19 100644 --- a/up & going/toc.md +++ b/up & going/toc.md @@ -3,6 +3,11 @@ ## Table of Contents * Preface -* Chapter 1: // TODO - * // TODO +* Chapter 1: Into Programming + * Variables + * Conditionals + * Loops + * Functions +* Chapter 2: Into JavaScript +* Chapter 3: The Rest of the Series * Appendix A: Thank You's!