Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

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);
 
PREVIOUS NEXT
Tagged: #string #reduction #javascript
ADD COMMENT
Topic
Name
3+3 =