I have an input type text where I letters but I want those letters to worth a number for example a=1 b=2 and I write ab in the input text and in a paragraph it appears 3
function add(){
}
<html>
<head>
</head>
<body>
<input type="text" placeholder="Texto" class="controls1" id="T1">
<p class="controls" id="en1">Result</p>
<input type="button" value="Result" class="R1" id="R1" onclick="add()">
</body>
</html>