From 0aa803ac34acad1d11d2f8ca6b5c5468296710ab Mon Sep 17 00:00:00 2001
From: Roenz Aberin <42616880+raberin@users.noreply.github.com>
Date: Tue, 27 Nov 2018 18:01:55 -0800
Subject: [PATCH] Removed an extra "is a" on line 8 (#23814)
---
guide/english/javascript/typeof/index.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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