From 7066a75f92dd0ed26871956a980bd733dc493258 Mon Sep 17 00:00:00 2001 From: Justin-Barlowe Date: Wed, 26 Jul 2023 17:15:26 -0400 Subject: [PATCH] Added global string and number --- languages/javascript.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/languages/javascript.js b/languages/javascript.js index 1aac6d6..04c81c9 100644 --- a/languages/javascript.js +++ b/languages/javascript.js @@ -102,8 +102,8 @@ arr.values() // Returns a new Array Iter * ******************************************************************************************* */ // Global object: properties -String.length // Reflects the length of the string. Read-only. -String.prototype // Allows you to add properties and methods to the String object. +String.length // Reflects the length of the string. Read-only. +String.prototype // Allows you to add properties and methods to the String object. // Global object: methods String.fromCharCode(num1[, ...[, numN]]) // Returns a string created from the specified sequence of UTF-16 code units.