From 84ede4b2b83d8c0c806b55520d19662696373327 Mon Sep 17 00:00:00 2001 From: Arthur Verschaeve Date: Sun, 28 Dec 2014 23:18:51 +0100 Subject: [PATCH] Javascript-101/testing-type: format type correctly --- page/javascript-101/testing-type.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.