word = userInput[0]; //abc var sum =0; for(i=0;i<word.length;i++) { sum = sum + word.charCodeAt(i); } console.log(sum); //294