Skip to content

Commit 6098562

Browse files
authored
Merge pull request #224 from usernamehw/patch-6
Typo
2 parents e6c9e21 + 560eb0e commit 6098562

File tree

1 file changed

+1
-1
lines changed
  • 1-js/05-data-types/01-primitives-methods

1 file changed

+1
-1
lines changed

1-js/05-data-types/01-primitives-methods/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ So primitives can provide methods, but they still remain lightweight.
7070

7171
The JavaScript engine highly optimizes this process. It may even skip the creation of the extra object at all. But it must still adhere to the specification and behave as if it creates one.
7272

73-
A number has methods of it's own, for instance, [toFixed(n)](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toFixed) rounds the number to the given precision:
73+
A number has methods of its own, for instance, [toFixed(n)](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toFixed) rounds the number to the given precision:
7474

7575
```js run
7676
let n = 1.23456;

0 commit comments

Comments
 (0)