Skip to content

Instantly share code, notes, and snippets.

@danmoran-pro
Created June 26, 2019 18:17
Show Gist options
  • Save danmoran-pro/b948136f6c21b788b5ff0b9f7f882710 to your computer and use it in GitHub Desktop.
Save danmoran-pro/b948136f6c21b788b5ff0b9f7f882710 to your computer and use it in GitHub Desktop.
Day_3_CTU

What is a Class?

  • Class is something that models.(IE. The blue print.)
    • state
    • behavior What is an Instance?
  • represents a class(type) What is an Object?
  • the same as Instance....for now. What happens when we call .new on an object?
  • creats a new instance of that class. What is an attribute? How can we recognize an attribute?
  • Are discripter What is a method?
  • behaviors What are parameters? How do we add parameters to methods?
  • arguments What is a return value? How do you know what the return value of a method is? Do all methods have return values?
  • What's given back. output of methods. for the most part yes. Depends on what you mean by return. What is the link to your #each repl?
  • https://repl.it/repls/DarkgreyOffbeatLicenses
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment