| > The first variable using `const` is called ”immutable”, which is misleading, since only the _assignment_ is immutable That’s a first look at the syntax. The details are explained here: https://exploringjs.com/impatient-js/ch_variables-assignment... But I should clarify that “immutable” here means “immutable binding”. > Only single- and double-quoted strings are introduced at first I had to start somewhere. Template literals and tagged templates are a more complex topic that benefits from strings already having been introduced. > Arrow functions are introduced as just another syntax Arrow functions are introduced in detail here: https://exploringjs.com/impatient-js/ch_callables.html --- In general, I occasionally have to initially leave out some details so that the book can be read linearly. But those details are then filled in later in the book. |