From 05cea67127dac64d4e60ef53460453f5f181f950 Mon Sep 17 00:00:00 2001 From: fransposito <44411858+fransposito@users.noreply.github.com> Date: Thu, 17 Jan 2019 10:47:12 -0600 Subject: [PATCH] grammar edits for readability (#27610) --- .../construct-javascript-objects-with-functions/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/english/javascript/tutorials/construct-javascript-objects-with-functions/index.md b/guide/english/javascript/tutorials/construct-javascript-objects-with-functions/index.md index e96e5cef4f..4f941a5fc3 100644 --- a/guide/english/javascript/tutorials/construct-javascript-objects-with-functions/index.md +++ b/guide/english/javascript/tutorials/construct-javascript-objects-with-functions/index.md @@ -1,9 +1,9 @@ --- title: Construct JavaScript Objects with Functions --- -Using constructors it is easy to create new objects using a blueprint or constructor. The declaration syntax is a little different but still easy to remember. +It is easy to create new objects using a **Blueprint** or **Constructor**. The declaration syntax is a little different but still easy to remember. - // Let's add the properties engines and seats to the car in the same way that the property wheels has been added below. They should both be numbers. + // Let's add the properties engines and seats to the Car in the same way that the property wheels has been added below. They should both be numbers. var Car = function() { this.wheels = 4; this.engines = 1;