Javascript -> JavaScript (English) (#35183)

* Javascript -> JavaScript (English)

* Update technical documentation page for required change

* Update use-class-syntax-to-define-a-constructor-function.english.md

* Update left-factorials.md
This commit is contained in:
Lipis
2019-03-28 09:35:41 +01:00
committed by The Coding Aviator
parent fed6ffb606
commit e84ae45008
95 changed files with 192 additions and 192 deletions

View File

@ -73,7 +73,7 @@ function leftFactorial(n) {
return 1;
// Note: for n>=20, the result may not be correct.
// This is because Javascript uses 53 bit integers and
// This is because JavaScript uses 53 bit integers and
// for n>=20 result becomes too large.
let res = 2, fact = 2;
@ -86,4 +86,4 @@ function leftFactorial(n) {
}
```
</section>
</section>