We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3fbb6b commit cb86283Copy full SHA for cb86283
1 file changed
数据类型初识/README.MD
@@ -656,7 +656,8 @@ Symbol值不能与其他类型的值进行运算,会报错;但是可以显式
656
- “5”==5
657
- 有哪些值转换后是false
658
- 下面分别输出什么?
659
- console.log("22"+11);
660
- console.log("22"-2+11);
661
- console.log("22"+11-2);
662
- console.log(+"22"+11);
+
+ console.log("22"+11);
+ console.log("22"-2+11);
+ console.log("22"+11-2);
663
+ console.log(+"22"+11);
0 commit comments