Karla Parraga - #459
Open
karlamparraga wants to merge 2 commits into
Open
Conversation
Austinlp4
reviewed
Oct 31, 2018
Austinlp4
left a comment
There was a problem hiding this comment.
Tasks
- Prototype-refactor
- Convert all constructors into ES6 Classes
- Lambda-classes
- Instructors - extension of Person
- Students - extension of Person
- Project managers - extenstion of instructors
- Create two or three objects for each classes
-
- Person
- make person classes
- recieves name, age, location, and gender as props
- speak method where name and location are the object props
- Instructor
- build unique props for instructors
- create methods, demo and grade
- Student
- contains unique props previusBackground, className, and favSubjects
- contains methods listsSubjects, PRAssignment, and sprintChallenge
- Project Manager
- unique props include gradClassNameand favInstructor
- contains methods standUp and debugsCode
*Stretch - Completed some stretch
- Person
Project Standing
- Great job!
Commits
- I'd like to see more commits. Its a good Idea to commit after every function or problem.
Rating: 3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
JavaScript IV
This challenge focuses on classes in JavaScript using the new
classkeyword.Assignment Description
You already pretty much know all about classes but you're used to seeing them built in the following context:
prototype-refactor- Take existing code and make it modern.Challenge:Convert all of your constructors into ES6 Classes using theclassandextendskeywords. You should be able to run your same logs and they should build out the proper expected behaviors.lambda-classes- We need a roster of Lambda School personnel. Build it!people.Person
base-classnameagelocationgenderall as propsspeakas a method.Hello my name is Fred, I am from Bedrockwherenameandlocationare the object's own propsInstructor
specialtywhat the Instructor is good at i.e. 'redux'favLanguagei.e. 'JavaScript, Python, Elm etc.'catchPhrasei.e.Don't forget the homiesdemoreceives asubjectstring as an argument and logs out the phrase 'Today we are learning about {subject}' where subject is the param passed in.gradereceives astudentobject and asubjectstring as arguments and logs out '{student.name} receives a perfect score on {subject}'Student
previousBackgroundi.e. what the Student used to do before Lambda SchoolclassNamei.e. CS132favSubjects. i.e. an array of the student's favorite subjects ['Html', 'CSS', 'JavaScript']listsSubjectsa method that logs out all of the student's favoriteSubjects one by one.PRAssignmenta method that receives a subject as an argument and logs out that thestudent.name has submitted a PR for {subject}sprintChallengesimilar to PRAssignment but logs outstudent.name has begun sprint challenge on {subject}Project Mananger
gradClassName: i.e. CS1favInstructor: i.e. SeanstandUpa method that takes in a slack channel and logs `{name} announces to {channel}, @channel standy times!debugsCodea method that takes in a student object and a subject and logs out{name} debugs {student.name}'s code on {subject}Stretch Problem
@Austinlp4