diff --git a/manuscript/markdown/Instances and Classes/class.md b/manuscript/markdown/Instances and Classes/class.md index 8eba2b5..c5657df 100644 --- a/manuscript/markdown/Instances and Classes/class.md +++ b/manuscript/markdown/Instances and Classes/class.md @@ -53,8 +53,8 @@ For these reasons, many programmers choose to write their own library of functio [Backbone]: http://backbonejs.org -Nevertheless, JavaScript right out of the box has everything you need for defining classes, methods, mixins, and even inheritance (as we'll see in [Extending Classes with Inheritance]). If we choose to adopt a library with more streamlined syntax, it's vital to understand JavaScript's semantics well enough to know what is happening "under the hood" so that we can work directly with objects, functions, methods, and prototypes when needed. +Nevertheless, JavaScript right out of the box has everything you need for defining classes, methods, mixins, and even inheritance (as we'll see in [Extending Classes with Inheritance]). Even if we choose to adopt a library with more streamlined syntax, it's vital to understand JavaScript's semantics well enough to know what is happening "under the hood" so that we can work directly with objects, functions, methods, and prototypes when needed. [Extending Classes with Inheritance]: #classextension -A> One note of caution: A few libraries, such as the vile creation [YouAreDaChef](https://github.com/raganwald/YouAreDaChef#you-are-da-chef), manipulate JavaScript such that ordinary programming such as extending a prototype either don't work at all or break the library's abstraction. Think long and carefully before adopting such a library. The best libraries "Cut with JavaScript's grain." \ No newline at end of file +A> One note of caution: A few libraries, such as the vile creation [YouAreDaChef](https://github.com/raganwald/YouAreDaChef#you-are-da-chef), manipulate JavaScript such that ordinary programming such as extending a prototype either don't work at all or break the library's abstraction. Think long and carefully before adopting such a library. The best libraries "Cut with JavaScript's grain."