File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -451,16 +451,22 @@ console.log( new Number(5) === 5);
451
451
----------
452
452
453
453
**Question:**guess output
454
+
455
+ ` ` ` js
454
456
class test {
455
457
#age= 45 ;
456
458
}
457
459
g= new test ();
458
460
g .age
461
+ ` ` `
459
462
460
463
----------
461
464
462
465
**Question:**guess output
466
+
467
+ ` ` ` js
463
468
#age= 45 ;
469
+ ` ` `
464
470
465
471
----------
466
472
@@ -469,16 +475,21 @@ g.age
469
475
----------
470
476
471
477
**Question:**guess output
478
+
479
+ ` ` ` js
472
480
p= new Point ();
473
481
console .log (p);// first answer
474
482
475
483
p= new Point (4 );// second answer
476
484
console .log (p);// third answer
477
485
console .log (p .toString ()); // forth answer
486
+ ` ` `
478
487
479
488
----------
480
489
481
490
**Question:**guess output
491
+
492
+ ` ` ` js
482
493
0.1 + " 0.2"
483
494
" 0.1" + 0.2
484
-
495
+ ` ` `
You can’t perform that action at this time.
0 commit comments