From 564847a7dc2750d5284c514cc759193d43f578ec Mon Sep 17 00:00:00 2001 From: lsoares Date: Mon, 18 Feb 2013 17:16:49 +0000 Subject: [PATCH] Update page/javascript-101/types.md --- page/javascript-101/types.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/page/javascript-101/types.md b/page/javascript-101/types.md index 68ebdbe6..9cf7b58b 100644 --- a/page/javascript-101/types.md +++ b/page/javascript-101/types.md @@ -6,7 +6,7 @@ attribution: - jQuery Fundamentals --- -Types in JavaScript fall into two categories: primitives or objects. Primitive types include: +Types in JavaScript fall into two categories: primitives or composite. Primitive types include: * String * Number @@ -67,9 +67,9 @@ var bar1 = undefined; var bar2; ``` -## Objects +## Composite -Everything else is in JavaScript is considered an Object. While there are [numerous built-in objects](https://developer.mozilla.org/en/JavaScript/Reference#Global_Objects, "MDN - Global Object Reference"), this chapter will cover: +Everything else in JavaScript is considered an Object. While there are [numerous built-in objects](https://developer.mozilla.org/en/JavaScript/Reference#Global_Objects, "MDN - Global Object Reference"), this chapter will cover: * Object * Array