Alguien me podría ayudar con los proyectos de gestión tienda y gestión contacto de JavaScript porfavor | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Alguien me podría ayudar con los proyectos de gestión tienda y gestión contacto de JavaScript porfavor

Ayuda

29th Sep 2021, 9:49 PM
josue.uwu
josue.uwu - avatar
3 Answers
+ 1
El de gestión de tienda function main() { var increase = parseInt(readLine(), 10); var prices = [98.99, 15.2, 20, 1026]; //tu código va aquí var arrNew = prices.map (function(i) { return i + increase; }); console.log(arrNew); } y el de gestión de contacto function Contact(name, number) { this.name = name; this.number = number; this.print = function (){ var x = this.name var y = this.number console.log(x+": "+y) } } var a = new Contact("David", 12345); var b = new Contact("Amy", 987654321) a.print(); b.print();
2nd Oct 2021, 12:16 AM
Ariel González Maillard
Ariel González Maillard - avatar
+ 1
GESTION DE CONTACTOS function contact(name, number) { this.name = name; this.number = number; this.print = function(){ console.log(name + ": " + number) } } var a = new contact("David", 12345); var b = new contact("Amy", 987654321) a.print(); b.print();
10th May 2022, 11:27 PM
Mario A. Gudiño
Mario A. Gudiño - avatar
0
Arue Gonzales Maillard gracias
2nd Oct 2021, 2:55 AM
josue.uwu
josue.uwu - avatar