Refer to the following code:
01 function Tiger(){
02 this.Type = 'Cat';
03 this.size = 'large';
04 }
05
06 let tony = new Tiger();
07 tony.roar = () =>{
08 console.log('They\'re great1');
09 };
10
11 function Lion(){
12 this.type = 'Cat';
13 this.size = 'large';
14 }
15
16 let leo = new Lion();
17 //Insert code here
18 leo.roar();
Which two statements could be inserted at line 17 to enable the function call on line 18?
Choose 2 answers.
Emilio
11 months agoArminda
11 months agoRia
10 months agoCrissy
10 months agoBilly
10 months agoBethanie
10 months agoVerlene
11 months agoEstrella
10 months agoAlecia
10 months agoHector
10 months agoBenton
10 months agoNichelle
10 months agoIvan
11 months agoEstrella
11 months agoAbraham
11 months agoLucille
12 months agoArlean
12 months agoVictor
12 months agoSharika
11 months agoAndree
11 months agoJosphine
11 months agoPhuong
11 months agoAbraham
12 months ago