Skip to content

Commit

Permalink
用字用語の統一・編集済み
Browse files Browse the repository at this point in the history
  • Loading branch information
kahei committed Jan 21, 2020
1 parent ddd2768 commit 3e0351e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions source/basic/date/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,9 @@ new Date(year, month, day, hour, minutes, seconds, milliseconds);

先述した2つの方法と違い、この方法はタイムゾーンを指定できません。
渡した数値は常にローカルのタイムゾーンにおける時刻とみなされます。
<!-- textlint-disable -->
結果が実行環境に依存してしまうため、基本的にこの方法は使うべきではありません。
<!-- textlint-enable -->
時刻を部分ごとに指定したい場合は、[Date.UTC][]メソッドを使うとよいでしょう。
渡す引数の形式は同じですが、`Date.UTC`メソッドは渡された数値をUTCにおける時刻として扱い、その時刻値を返します。

Expand Down
4 changes: 2 additions & 2 deletions source/basic/math/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ console.log(Math.min(...numbers)); // => 1
次の[Math.ceil][]メソッドは、引数として渡した数以上で最小の整数を返します。このような関数は**天井関数**と呼ばれます。
正の数である`1.3``2`になりますが、負の数である`-1.3`はより大きい整数の`-1`に丸められます。

[Math.round][]メソッドは、一般的な四捨五入の処理をおこないます
[Math.round][]メソッドは、一般的な四捨五入の処理を行います
小数部分が`0.5`よりも小さな場合は切り捨てられ、それ以外は切り上げられます。

{{book.console}}
Expand Down Expand Up @@ -113,7 +113,7 @@ console.log(Math.trunc(-1.3)); // => -1
## まとめ {#conclusion}

この章では、`Math`オブジェクトについて学びました。
紹介したメソッドは`Math`オブジェクトの一部にすぎないため、その他にもメソッドが用意されています
紹介したメソッドは`Math`オブジェクトの一部にすぎないため、そのほかにもメソッドが用意されています

- `Math`は数学的な定数や関数を提供するビルトインオブジェクト
- `Math`はコンストラクタではないためインスタンス化できない
Expand Down

0 comments on commit 3e0351e

Please sign in to comment.