diff --git a/curriculum/challenges/english/25-front-end-development/lecture-working-with-types-and-objects/6732c69d82814160951b1aa7.md b/curriculum/challenges/english/25-front-end-development/lecture-working-with-types-and-objects/6732c69d82814160951b1aa7.md index 2d89c56075a..576e8099214 100644 --- a/curriculum/challenges/english/25-front-end-development/lecture-working-with-types-and-objects/6732c69d82814160951b1aa7.md +++ b/curriculum/challenges/english/25-front-end-development/lecture-working-with-types-and-objects/6732c69d82814160951b1aa7.md @@ -7,7 +7,7 @@ dashedName: what-is-the-number-constructor-and-how-does-it-work-for-type-coercio # --description-- -The `Number()` constructor is used to create a number object. The number object contains a few helpful properties and methods like the `isNaN` and the `toFix` method. Here's an example using the `Number()` constructor with the `new` keyword: +The `Number()` constructor is used to create a number object. The number object contains a few helpful properties and methods like the `isNaN` and the `toFixed` method. Here's an example using the `Number()` constructor with the `new` keyword: ```js const myNum = new Number("34");