Write a program in javascript to find reverse of a number
Answers
Answered by
2
Here is the code,
<!doctype html>
<html>
<head>
<script>
function palin()
{
var a,no,b,temp=0; no=Number(document.getElementById("no_input").value);
b=no;
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>
<!doctype html>
<html>
<head>
<script>
function palin()
{
var a,no,b,temp=0; no=Number(document.getElementById("no_input").value);
b=no;
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>
Similar questions
Physics,
7 months ago
India Languages,
7 months ago
Science,
7 months ago
Math,
1 year ago
Science,
1 year ago