From c5de071898842c29f74e431dddf4c48b80b1a8a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=98=BF=E5=88=9A=E7=82=96=E8=9B=8B?= <13107145@qq.com> Date: Wed, 12 Jul 2023 07:15:46 +0000 Subject: [PATCH] =?UTF-8?q?update=20guide/functions/aggregation.md.=20?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3=20min=E5=87=BD=E6=95=B0=E7=A4=BA=E4=BE=8B?= =?UTF-8?q?=E7=9A=84=E8=BF=94=E5=9B=9E=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit return min(list); // 5 改为 return min(list); // 1 Signed-off-by: 阿刚炖蛋 <13107145@qq.com> --- guide/functions/aggregation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/functions/aggregation.md b/guide/functions/aggregation.md index c976041..0e58b82 100644 --- a/guide/functions/aggregation.md +++ b/guide/functions/aggregation.md @@ -33,7 +33,7 @@ return max(list); // 5 - 函数说明:求集合最小值 ```js var list = [1,2,3,4,5] -return min(list); // 5 +return min(list); // 1 ``` ## avg -- Gitee