js怎么把日期的.改成-

怎么把[
            [10.09,10.11],
            [10.13,10.22],
            [10.14, 10.15],
        ];   改成[
            [10-09,10-11],
            [10-13,10-22],
            [10-14, 10-15],
        ];   
        
   var dataarr=[
            [10.09,10.11],
            [10.13,10.22],
            [10.14, 10.15],
        ];   
        dataarr.forEach(function(item){
         console.log(item)
         item.forEach(function(me){
           console.log(me);
           me.toString();
           console.log(me)
          //  me.replace(/./g,'-')
         })
        });
阅读 3.1k
4 个回答

clipboard.png


const res = demo([
  [10.09, 10.11],
  [10.13, 10.22],
  [10.14, 10.15]
])

console.log(res) // => [["10-09", "10-11"], ["10-13", "10-22"], ["10-14", "10-15"]]

function demo (list) {
  list.forEach(up => up.forEach((item, index) => {
    up[index] = String(item).replace(/\./g, '-')
  }))
  return list
}
var dataarr=[
            [10.09,10.11],
            [10.13,10.22],
            [10.14, 10.15],
        ];   

dataarr.forEach(function(value,index,arr){
    value = value.toString();
    value = value.replace(/\./g, '-');
    value = value.split(",");
    arr[index]=value;
});

代码挑战赛么?

const newData = dataarr.map(
  arr => arr.map(
    num => ('' + num).replace('.', '-')
  )
)
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题