Answers for "how to compress a string size javascript to reduce size"

1

string reduction javascript

let str = "hello";
// reduce string to the sum of the ascii codes of its characters
str.split().reduce((a,b) => a + b.charCodeAt(0), 0);
Posted by: Guest on June-02-2021
1

string reduction javascript

// method to extend String to call reduce the same way as an Array
String.prototype.reduce = function () { 
    return this.split().reduce(...arguments);
}

// sum of the ascii codes using the newly created String prototype method
str.reduce((a,b) => a + b.charCodeAt(0), 0);
Posted by: Guest on June-02-2021

Code answers related to "how to compress a string size javascript to reduce size"

Code answers related to "Javascript"

Browse Popular Code Answers by Language