From c8e600d6862a5b118a450984ff9f2e54858f64aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B5=A9=E4=B8=8B=E8=AE=B8=E6=84=BF?= <811327767@qq.com> Date: Fri, 1 Jul 2022 08:34:38 +0000 Subject: [PATCH] =?UTF-8?q?update=20src/main/resources/magic-api/api/6?= =?UTF-8?q?=E5=9F=BA=E6=9C=AC=E8=AF=AD=E6=B3=95/=E8=84=9A=E6=9C=AC?= =?UTF-8?q?=E8=AF=AD=E6=B3=95/=E5=90=84=E7=B1=BB=E8=BF=90=E7=AE=97?= =?UTF-8?q?=E7=AC=A6.ms.=20=E9=94=99=E5=88=AB=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...\220\204\347\261\273\350\277\220\347\256\227\347\254\246.ms" | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git "a/src/main/resources/magic-api/api/6\345\237\272\346\234\254\350\257\255\346\263\225/\350\204\232\346\234\254\350\257\255\346\263\225/\345\220\204\347\261\273\350\277\220\347\256\227\347\254\246.ms" "b/src/main/resources/magic-api/api/6\345\237\272\346\234\254\350\257\255\346\263\225/\350\204\232\346\234\254\350\257\255\346\263\225/\345\220\204\347\261\273\350\277\220\347\256\227\347\254\246.ms" index a34315f..19c7887 100644 --- "a/src/main/resources/magic-api/api/6\345\237\272\346\234\254\350\257\255\346\263\225/\350\204\232\346\234\254\350\257\255\346\263\225/\345\220\204\347\261\273\350\277\220\347\256\227\347\254\246.ms" +++ "b/src/main/resources/magic-api/api/6\345\237\272\346\234\254\350\257\255\346\263\225/\350\204\232\346\234\254\350\257\255\346\263\225/\345\220\204\347\261\273\350\277\220\347\256\227\347\254\246.ms" @@ -399,7 +399,7 @@ return { '<=': a <= b, '>=': a >= b, '==': a == b, - '===': a === b, // 与JS蕾西,需要类型一致,值一致才返回true + '===': a === b, // 与JS类似,需要类型一致,值一致才返回true '!=': a != b, '!==': a !== b, // 与JS类似,需类型不一致或 值不一致 才返回true 与 === 相反 '&&': a && b, // 与JS类似,如:true && true --> true ,123 && 456 --> 456 , null && 123 --> 456 -- Gitee