📌  相关文章
📜  如何计算数组中的重复项javascript代码示例

📅  最后修改于: 2022-03-11 15:03:29.433000             🧑  作者: Mango

代码示例5
function doubleValues(array) {
  var newArray = [];
  array.forEach(function (el) { newArray.push(el, el); });    
  return newArray;
}

console.log(doubleValues([1,2,3]));