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

Function Libro

Etapa4JavaScript/ejercicio14.js:7–12  ·  view source on GitHub ↗
(ISBN,titulo, autor, numeroDePaginas)

Source from the content-addressed store, hash-verified

5// numero de páginas.
6
7function Libro(ISBN,titulo, autor, numeroDePaginas) {
8 this.ISBN = prompt("Ingresa el ISBN");
9 this.titulo = prompt("Ingresa el título");
10 this.autor = prompt("Ingresa el autor");
11 this.numeroDePaginas = parseInt(prompt("Ingresa la cantidad de páginas"));
12};
13
14console.log(new Libro());

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected