Merge pull request #2241 from mikemitchell574/patch-6

Include "object" in MDN link
This commit is contained in:
Ilya Kantor 2020-10-29 18:44:39 +03:00 committed by GitHub
commit d1f4466084
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -406,7 +406,7 @@ A few examples:
alert( Math.pow(2, 10) ); // 2 in power 10 = 1024 alert( Math.pow(2, 10) ); // 2 in power 10 = 1024
``` ```
There are more functions and constants in `Math` object, including trigonometry, which you can find in the [docs for the Math](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Math) object. There are more functions and constants in `Math` object, including trigonometry, which you can find in the [docs for the Math object](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Math).
## Summary ## Summary