Answers for "duplicate function start and end in javascript"

1

first duplicate javascript

function firstDuplicate(a) {
    let data = [];
    
    for (dup of a) {
        if (data[dup]) {
            return dup
        } else {
            data[dup] = dup
        }
    }
    return -1
}
Posted by: Guest on October-25-2020
0

function that duplicates data in array js

function doubleValues(array) {
  var newArray = [];
  array.forEach(function (el) { newArray.push(el, el); });    
  return newArray;
}

console.log(doubleValues([1,2,3]));
Posted by: Guest on April-22-2021

Code answers related to "duplicate function start and end in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language