Slip 25 - A) Write a JavaScript function that reverse a input number

Solution:


<html>
<head>
<script>
function palin()
{
40
var a,no,temp=0;
no=Number(document.getElementById("no_input").value);
while(no>0)
{
a=no%10;
no=parseInt(no/10);
temp=temp*10+a;
}
alert(temp);
}
</script>
</head>
<body>
Enter any Number: <input id="no_input">
<button onclick="palin()">Check</button></br></br>
</body>
</html>

Post a Comment

0 Comments