Added global string and number

This commit is contained in:
Justin-Barlowe
2023-07-26 17:15:26 -04:00
parent 5e0ed53af9
commit 7066a75f92

View File

@@ -102,8 +102,8 @@ arr.values() // Returns a new Array Iter
* ******************************************************************************************* */ * ******************************************************************************************* */
// Global object: properties // Global object: properties
String.length // Reflects the length of the string. Read-only. String.length // Reflects the length of the string. Read-only.
String.prototype // Allows you to add properties and methods to the String object. String.prototype // Allows you to add properties and methods to the String object.
// Global object: methods // Global object: methods
String.fromCharCode(num1[, ...[, numN]]) // Returns a string created from the specified sequence of UTF-16 code units. String.fromCharCode(num1[, ...[, numN]]) // Returns a string created from the specified sequence of UTF-16 code units.