Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Write a program to check whether a given number is a
palindrome or not?

Answers were Sorted based on User's Feedback



Write a program to check whether a given number is a palindrome or not?..

Answer / abhijeet gupta

var num=123211;
var str=""+num;
for(var i=0;i<str.length/2;i++){
if(str.charAt(i)!==str.charAt(str.length-1-i)) {
console.log("Not Palindrome");
return;
}
}
console.log("palindrome")

Is This Answer Correct ?    3 Yes 3 No

Write a program to check whether a given number is a palindrome or not?..

Answer / annshuk

function isPalidrome(str){
if(str== str.split('').reverse().join())
return str +"is palidrome";
else return str +"try another string";
}

Is This Answer Correct ?    0 Yes 4 No

Write a program to check whether a given number is a palindrome or not?..

Answer / james

102101

Is This Answer Correct ?    3 Yes 9 No

Post New Answer

More JavaScript Interview Questions

What does the delete operator do?

0 Answers  


What is "strict mode" and how is it used in JavaScript?

0 Answers  


What is the difference between the substr() and substring() functions in javascript?

0 Answers  


What does polyfill mean?

0 Answers  


How about 2+5+"8"?

6 Answers   Satyam,


Can we create buttons in JavaScript ? if yes how? pls provide sample code... Thanks in advance.....

1 Answers   HCL,


Is array a data type in javascript?

0 Answers  


What is the disadvantage of javascript?

0 Answers  


What is callback?

0 Answers  


How to call a function in every x seconds in javascript?

0 Answers  


How many types of variables are there in javascript?

0 Answers  


What are the string methods?

0 Answers  


Categories