From c7aeb83319bc3c80cfb058b1830bf9807cfeb854 Mon Sep 17 00:00:00 2001 From: Shayne Smith Date: Tue, 21 Jan 2020 15:27:46 -0600 Subject: [PATCH] Lesson 05 --- Lesson08-JS-V/homework/feynmanWritingPrompts.txt | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Lesson08-JS-V/homework/feynmanWritingPrompts.txt diff --git a/Lesson08-JS-V/homework/feynmanWritingPrompts.txt b/Lesson08-JS-V/homework/feynmanWritingPrompts.txt new file mode 100644 index 000000000..8ff54d8e2 --- /dev/null +++ b/Lesson08-JS-V/homework/feynmanWritingPrompts.txt @@ -0,0 +1,7 @@ +prototypes { + Classes are objects that are used as templates to build more complex objects. They can be distinguished from other objects by their uppercase letter at the start of the object name. Prototypes are created when each class is created. They give daughter objects access to methods in the original class, without copying each objects' methods in memory. This greatly reduces memory needs when millions of objects are instantiated from one class and results in much greater memory efficiency. +} + +constructors { + Constructors, or classes, have much of the same functionality as other objects and are used as templates to create similar objects that share many of the same properties and methods. +} \ No newline at end of file