diff --git a/page/javascript-101/testing-type.md b/page/javascript-101/testing-type.md index 669b4e1d..d1bcbe69 100644 --- a/page/javascript-101/testing-type.md +++ b/page/javascript-101/testing-type.md @@ -5,7 +5,7 @@ "attribution": [ "jQuery Fundamentals" ] } -JavaScript offers a way to test the type of a variable. However, the result can be confusing – for example, the type of an array is "Object." +JavaScript offers a way to test the type of a variable. However, the result can be confusing – for example, the type of an array is `object`. It's common practice to use the `typeof` operator when trying to determining the type of a specific value.