From f9461ac0c376478aad629931bc204276e4db6144 Mon Sep 17 00:00:00 2001 From: greyhao <107107440+greyhao@users.noreply.github.com> Date: Thu, 17 Nov 2022 11:37:30 +0800 Subject: [PATCH] doc: update (#111) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: 小弟调调™ --- docs/javascript.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/javascript.md b/docs/javascript.md index 11053b5..ccf9f14 100644 --- a/docs/javascript.md +++ b/docs/javascript.md @@ -160,7 +160,7 @@ abc.endsWith("wxy", abc.length - 1); // trim、trimEnd 和 trimStart 用于去除首尾空格 " ab c ".trim(); // "ab c" // 数字转为十六进制 (16)、八进制 (8) 或二进制 (2) -128.toString(16); +(128).toString(16); ``` ### 数字