js--使用replace去掉对象中不想要的东西后,把对象转换为数组

使用replace去掉对象中不想要的东西

  var str = '[2,3]'
  str = str.replace('[', '')
  str = str.replace(']','')
  console.log(str) // str: 2,3

对象转换为数组

str = str.split(',')  
console.log(str)     // str:   [ '2', '3' ]

如果不先把'[' 和 ']'替换掉,直接使用split,得到的数组就是

str = str.split(',')  
console.log(str)     // str:  [ '[2', '3]' ]

你可能感兴趣的:(js--使用replace去掉对象中不想要的东西后,把对象转换为数组)