Skip to content

Instantly share code, notes, and snippets.

@mieszko4
Created December 5, 2015 12:09
Show Gist options
  • Save mieszko4/854c8583ff0157ce00a7 to your computer and use it in GitHub Desktop.
Save mieszko4/854c8583ff0157ce00a7 to your computer and use it in GitHub Desktop.

Revisions

  1. mieszko4 created this gist Dec 5, 2015.
    8 changes: 8 additions & 0 deletions knowledge-hardwork-attitude.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,8 @@
    ['Knowledge', 'Hardwork', 'Attitude'].map(function (word) {
    return {
    word: word,
    count: word.toUpperCase().split('').reduce(function (p, c) {
    return p + (c.charCodeAt(0)-'A'.charCodeAt(0) + 1);
    }, 0)
    };
    });