From 489758cc018644eecf3a5ffade17457294ed945a Mon Sep 17 00:00:00 2001
From: DCloud-yyl <yanyilin@dcloud.io>
Date: Tue, 29 Aug 2023 22:38:50 +0800
Subject: [PATCH] Update operator.md

---
 docs/uts/operator.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/uts/operator.md b/docs/uts/operator.md
index 06ab7ee86..f1c6005dc 100644
--- a/docs/uts/operator.md
+++ b/docs/uts/operator.md
@@ -455,7 +455,7 @@ typeof [1, 2, 3] == "object" //true
 
 ```
 
-使用 typeof 获取 any 实例的类型时,在安卓平台上存在一些特殊情况:
+使用 typeof 获取 number 类型时,在安卓平台上存在一些特殊,将 number 类型赋值给 any 类型变量时,会根据数值将类型转变为实际平台专有数字类型。
 
 ```ts
 
@@ -472,7 +472,7 @@ typeof d == "Double" //true
 // 在 iOS 平台上
 typeof c == "number" //true
 
-// 在安卓平台上期望返回 "number" 但真实返回的是 "Double"
+// 在安卓平台上会根据数据实际数值转换为平台专有数字类型Doubel  
 typeof c == "number" //false 真实返回的是 "Double"
 
 ```
-- 
GitLab