File tree Expand file tree Collapse file tree 1 file changed +37
-4
lines changed
Expand file tree Collapse file tree 1 file changed +37
-4
lines changed Original file line number Diff line number Diff line change @@ -72,9 +72,9 @@ const holloway = new Student ({
7272 age : 32 ,
7373 location : "MidWest" ,
7474 gender : "Male" ,
75- previousBackground : "Quality Assurance " ,
76- className : "JavaScript Fundamentals " ,
77- favSubjects : [ "Programming " , "Creative Writing " , "Finance " ]
75+ previousBackground : "Currency Trader " ,
76+ className : "CS12 " ,
77+ favSubjects : [ "accounting " , "Math " , "Python " ]
7878 } )
7979
8080const josh = new Instructor ( {
@@ -93,4 +93,37 @@ const fred = new Instructor({
9393 favLanguage : 'JavaScript' ,
9494 specialty : 'Front-end' ,
9595 catchPhrase : `Don't forget the homies`
96- } ) ;
96+ } ) ;
97+ const jack = new Person ( {
98+ name : 'Jack' ,
99+ age : 37 ,
100+ location : 'Bedrock' ,
101+ gender : 'male'
102+ } ) ;
103+ const shelia = new Person ( {
104+ name : 'Jack' ,
105+ age : 25 ,
106+ location : 'Indiana' ,
107+ gender : 'Female'
108+ } ) ;
109+ const jordan = new ProjectManager ( {
110+ name : "Jordan" ,
111+ age : 28 ,
112+ location : "Texas" ,
113+ gender : "Female" ,
114+ speciality : "Biology" ,
115+ catchPhrase : "Attributes is a parameter" ,
116+ gradClassName : "CS9" ,
117+ favInstructor : "Josh"
118+ } )
119+ const Nathan = new ProjectManager ( {
120+ name : "Nathan" ,
121+ age : 30 ,
122+ location : "Texas" ,
123+ gender : "Male" ,
124+ speciality : "Full-Stack" ,
125+ catchPhrase : "that's what I want" ,
126+ gradClassName : "CS9" ,
127+ favInstructor : "Josh"
128+ } )
129+
You can’t perform that action at this time.
0 commit comments