Task:
Give you an obj, it can be 3 types: string, number and number array, Check that they are symmetrical or not, return a Boolean value.
Example:
obj="" return true (Empty string should return true)
obj="1"   return true   (one char should return true)
obj="11"  return true
obj="12"  return false
obj="121" return true
obj=1     return true   (number<10  should return true)
obj=-1    return false  (negative number should return false)
obj=121   return true
**obj=[]    return true  (Empty array should return true)**
**obj=[1]   return true  (an array with one element should return true)**
obj=[1,2,3,4,5]      return false  
**obj=[1,2,3,2,1]      return true**
**obj=[11,12,13,12,11] return true   (left element = right element)**
obj=[11,12,21,11]    return false  (not verify them as a string)
My code fails the bolded ones and I've tried to work out why for ages!
Here's my code:
function sc(obj){
  var obj2= obj;
  if (obj==="") {
    return true;
  } else if (typeof obj === "string") {
    var revd = obj.split("").reverse("").join("");
    return revd === obj;
  } else if (typeof obj === "number") {
    var revd = parseInt(obj.toString().split("").reverse("").join(""));
    return revd === obj;
  } else if (typeof obj === "object") {
    var obj2 = []
    for (var i = obj.length-1; i >= 0; i--) {
      obj2.push(obj[i])
    }
    return obj==obj2;
  }
}
    
console.log(sc([11,12,13,12,11]));Could anyone give me a hint as to what's going wrong?
 
     
     
     
    