Show HN: Asynchronous HTTP framework with support for ES modulesgithub.com1 ポイント·投稿者 Neist·8 年前·0 コメント
Neist·8 年前·議論They sure make it sound more complicated than it really is... I'm a self taught developer too, so I get where you're coming from :-)In javascript I would solve it like so: "HELLO".replace(/./g, character => String.fromCharCode(character.charCodeAt() + 1))This would result in "IFMMP".Basically it's just a matter of shifting charcodes.