Skip to content

Commit c05cbf6

Browse files
authored
Update README.md
1 parent 05f80f1 commit c05cbf6

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

README.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,16 +451,22 @@ console.log( new Number(5) === 5);
451451
----------
452452
453453
**Question:**guess output
454+
455+
```js
454456
class test {
455457
#age=45;
456458
}
457459
g=new test();
458460
g.age
461+
```
459462
460463
----------
461464
462465
**Question:**guess output
466+
467+
```js
463468
#age=45;
469+
```
464470
465471
----------
466472
@@ -469,16 +475,21 @@ g.age
469475
----------
470476
471477
**Question:**guess output
478+
479+
```js
472480
p=new Point();
473481
console.log(p);// first answer
474482

475483
p=new Point(4);// second answer
476484
console.log(p);// third answer
477485
console.log(p.toString()); //forth answer
486+
```
478487
479488
----------
480489
481490
**Question:**guess output
491+
492+
```js
482493
0.1 + "0.2"
483494
"0.1" + 0.2
484-
495+
```

0 commit comments

Comments
 (0)