From 40ea7c32834c81c2475771f4867b2c68a5f67e46 Mon Sep 17 00:00:00 2001 From: Stephane Moreau Date: Sat, 14 Apr 2018 01:22:33 +0100 Subject: [PATCH] typo --- languages/javascript/objects.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/languages/javascript/objects.js b/languages/javascript/objects.js index eb9e388..982a734 100644 --- a/languages/javascript/objects.js +++ b/languages/javascript/objects.js @@ -4,7 +4,7 @@ * ******************************************************************************************* */ // Global object: properties -Object.length // length is a property of a function object, and indicates how many arguments the function expects, i.e. the number of formal parameters. This number does not include the rest parameter. Has a value of 1. +Object.length // length is a property of a function object, and indicates how many arguments the function expects, i.e. the number of formal parameters. This number does not include the rest parameter. Has a value of 1. Object.prototype // Represents the Object prototype object and allows to add new properties and methods to all objects of type Object. // Methods of the Object constructor