Skip to content

Instantly share code, notes, and snippets.

@davidnymanmusic
Forked from shannonjen/alphabet.js
Created November 14, 2017 14:35
Show Gist options
  • Save davidnymanmusic/ff1c65d1b110ade0b09fa243954fa6a3 to your computer and use it in GitHub Desktop.
Save davidnymanmusic/ff1c65d1b110ade0b09fa243954fa6a3 to your computer and use it in GitHub Desktop.
// Description:
// Welcome. In this warmup you are required to, given a
// string, replace every letter with its position
// in the alphabet. If anything in the text isn't a letter,
// ignore it and don't return it. a being 1, b being 2,
// etc. As an example:
// alphabet_position("The sunset sets at twelve o' clock.")
// Should return "20 8 5 19 21 14 19 5 20 19 5 20 19 1 20 20
// 23 5 12 22 5 15 3 12 15 3 11" (As a string.)
function alphabetPosition(text) {
// codes goes here
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment