16 lines
419 B
JavaScript
16 lines
419 B
JavaScript
/*jslint node: true */
|
|
|
|
import "./_3_objects.js";
|
|
import "./_4_functions.js";
|
|
import "./_5_inheritance.js";
|
|
import "./_6_arrays.js";
|
|
import "./Appendix_A_Awful_Parts.js";
|
|
import "./Appendix_B_Bad_Parts.js";
|
|
|
|
/* use of comment indicators
|
|
|
|
// in code, indicates comment copied straight from the book
|
|
// not in code, is a paragraph heading
|
|
|
|
/* indicates my own comments and thoughts, can be nested within a // comment */
|
|
|