From 1fc71e6969c58f8c879dfb3a5b31d419a11302b0 Mon Sep 17 00:00:00 2001 From: Waldo Luis Ribeiro <30444355+waldoluisribeiro@users.noreply.github.com> Date: Fri, 22 Nov 2019 14:34:34 +0000 Subject: [PATCH] Update create-a-basic-javascript-object.english.md (#37810) small spelling correction (everyday -> every day) --- .../create-a-basic-javascript-object.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/object-oriented-programming/create-a-basic-javascript-object.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/object-oriented-programming/create-a-basic-javascript-object.english.md index 02e473525f..06d80f3454 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/object-oriented-programming/create-a-basic-javascript-object.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/object-oriented-programming/create-a-basic-javascript-object.english.md @@ -7,7 +7,7 @@ forumTopicId: 301317 ## Description
-Think about things people see everyday, like cars, shops, and birds. These are all objects: tangible things people can observe and interact with. +Think about things people see every day, like cars, shops, and birds. These are all objects: tangible things people can observe and interact with. What are some qualities of these objects? A car has wheels. Shops sell items. Birds have wings. These qualities, or properties, define what makes up an object. Note that similar objects share the same properties, but may have different values for those properties. For example, all cars have wheels, but not all cars have the same number of wheels. Objects in JavaScript are used to model real-world objects, giving them properties and behavior just like their real-world counterparts. Here's an example using these concepts to create a duck object: