diff --git a/guide/english/javascript/typeof/index.md b/guide/english/javascript/typeof/index.md index b8b6185286..a2f16f8718 100644 --- a/guide/english/javascript/typeof/index.md +++ b/guide/english/javascript/typeof/index.md @@ -5,7 +5,7 @@ title: Typeof `typeof` is a JavaScript keyword that will return the type of a variable when you call it. You can use this to validate function parameters or check if variables are defined. There are other uses as well. -The `typeof` operator is useful because it is an easy way to check the type of a variable in your code. This is important because JavaScript is a is a dynamically typed language. This means that you aren't required to assign types to variables when you create them. Because a variable is not restricted in this way, its type can change during the runtime of a program. +The `typeof` operator is useful because it is an easy way to check the type of a variable in your code. This is important because JavaScript is a dynamically typed language. This means that you aren't required to assign types to variables when you create them. Because a variable is not restricted in this way, its type can change during the runtime of a program. For example: ```javascript