Skip to content

Commit

Permalink
Merge pull request #21 from jigintern/dicenull-patch-1
Browse files Browse the repository at this point in the history
JavaScript資料: 不足していたカンマを追加
  • Loading branch information
dicenull authored Aug 14, 2023
2 parents add2910 + 42f122d commit 2d7e2a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion getting-started-with-javascript/DOCS.md
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ function solveQuadraticEquation (a, b, c) {
};
} else {
return {
type: '虚数解'
type: '虚数解',
ans: [
`(${b} ± √${Math.abs(d)}i) / ${2 * a}`
]
Expand Down

0 comments on commit 2d7e2a3

Please sign in to comment.