Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

Replace With Alphabet Position

//codewars :Replace With Alphabet Position
function alphabetPosition(text) {
  var result = "";
  for (var i = 0; i < text.length; i++) {
    var code = text.toUpperCase().charCodeAt(i)
    if (code > 64 && code < 91) result += (code - 64) + " ";
  }

  return result.slice(0, result.length - 1);
}
 
PREVIOUS NEXT
Tagged: #Replace #With #Alphabet #Position
ADD COMMENT
Topic
Name
7+3 =