From 42f122dc0a477b044ba818b3e81892c736cec008 Mon Sep 17 00:00:00 2001 From: dice Date: Mon, 14 Aug 2023 14:18:32 +0900 Subject: [PATCH] =?UTF-8?q?=E4=B8=8D=E8=B6=B3=E3=81=97=E3=81=A6=E3=81=84?= =?UTF-8?q?=E3=81=9F=E3=82=AB=E3=83=B3=E3=83=9E=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- getting-started-with-javascript/DOCS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getting-started-with-javascript/DOCS.md b/getting-started-with-javascript/DOCS.md index d83dde0..0bdb236 100644 --- a/getting-started-with-javascript/DOCS.md +++ b/getting-started-with-javascript/DOCS.md @@ -577,7 +577,7 @@ function solveQuadraticEquation (a, b, c) { }; } else { return { - type: '虚数解' + type: '虚数解', ans: [ `(${b} ± √${Math.abs(d)}i) / ${2 * a}` ]