Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 687 Bytes

Lost Without a Map.md

File metadata and controls

37 lines (27 loc) · 687 Bytes

Lost Without a Map

Codewars: Lost Without a Map

Releer

Dado un array de números devuelve un nuevo array que duplique el valor de cada elemento/número del array original.

Ejemplos

[1,2,3] => [2,4,6]
[4,5,6] => [8,10,12]
[1,1,1] => [2,2,2]

Aproximación

  • Para iterar: forEach, map.
  • Duplicar: *2

Código

function maps(x){
  return x.map((number) => number * 2);
};

Test

image

Optimizar

function newMaps(x) {
    return x.map(number => number * 2)
}