File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ for (var i = 0; i<inventory.length; i++){
115115 BMWAndAudi . push ( inventory [ i ] ) ;
116116 }
117117}
118- var myJSON = JSON . stringify ( BMWAndAudi )
118+ var myJSON = JSON . stringify ( BMWAndAudi ) ;
119119console . log ( myJSON ) ;
120120
121121
Original file line number Diff line number Diff line change @@ -68,9 +68,9 @@ console.log(fifthIntern.gender);
6868// Give Kennan the ability to say "Hello, my name is Kennan!" Use the console.log provided as a hint.
6969// console.log(kennan.speak());
7070firstIntern . speak = function ( ) {
71- console . log ( ' Hello' ) ;
71+ return " Hello, my name is Kennan!" ;
7272}
73- firstIntern . speak ( ) ;
73+ console . log ( firstIntern . speak ( ) ) ;
7474// Antonietta loves math, give her the ability to multiply two numbers together and return the product. Use the console.log provided as a hint.
7575//console.log(antonietta.multiplyNums(3,4));
7676fifthIntern . mult = function ( a , b ) {
You can’t perform that action at this time.
0 commit comments