MCPcopy Create free account
hub / github.com/JerePrograma/FullStackEgg / llenarVectores

Function llenarVectores

Etapa4JavaScript/ejercicio16.js:5–10  ·  view source on GitHub ↗
(vec1, vec2)

Source from the content-addressed store, hash-verified

3// y los muestre por pantalla.
4
5function llenarVectores(vec1, vec2) {
6 for (let index = 0; index < 5; index++) {
7 vec1.push(Math.random() * 10);
8 vec2.push(Math.random() * 10);
9 }
10}
11
12let vec1 = [];
13let vec2 = [];

Callers 1

ejercicio16.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected