Skip to content

Commit 560eb0e

Browse files
authored
Typo
1 parent 43c1978 commit 560eb0e

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)