Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

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