“Сокращение строки JavaScript” Ответ

Сокращение строки 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);
DenverCoder1

Сокращение строки 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);
DenverCoder1

Ответы похожие на “Сокращение строки JavaScript”

Вопросы похожие на “Сокращение строки JavaScript”

Смотреть популярные ответы по языку

Смотреть другие языки программирования