Javascript projects | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Javascript projects

Can anyone help me complete the javascript projects in here

16th Mar 2021, 6:39 PM
Shubham Tiwari
Shubham Tiwari - avatar
10 Answers
+ 3
you must provide description of project and your coding attempt in order to get helped ^^
16th Mar 2021, 6:43 PM
visph
visph - avatar
+ 2
and where is your coding attempt?
16th Mar 2021, 6:49 PM
visph
visph - avatar
0
This is the project You are working on a Contact Manager app. You have created the contact object constructor, which has two arguments, name and number. You need to add a print() method to the object, which will output the contact data to the console in the following format: name: number The given code declares two objects and calls their print() methods. Complete the code by defining the print() method for the objects
16th Mar 2021, 6:48 PM
Shubham Tiwari
Shubham Tiwari - avatar
0
Man I accidentally deleted it
16th Mar 2021, 6:50 PM
Shubham Tiwari
Shubham Tiwari - avatar
0
then try again: we do not provide answers if you doesn't show your attempt ;P
16th Mar 2021, 6:51 PM
visph
visph - avatar
0
This is the only snippet I can see now
16th Mar 2021, 6:51 PM
Shubham Tiwari
Shubham Tiwari - avatar
0
try it again...
16th Mar 2021, 6:52 PM
visph
visph - avatar
0
Already I m exhausted by it that's why I was asking here
16th Mar 2021, 6:52 PM
Shubham Tiwari
Shubham Tiwari - avatar
0
function contact(name, number) { this.name = name; this.number = number; this.print = print; } function print() { console.log(this.name + ": " + this.number); } var a = new contact("David", 12345); var b = new contact("Amy", 987654321) a.print(); b.print();
1st Mar 2022, 5:08 AM
Kintur Shah
Kintur Shah - avatar
- 1
function contact(name, number) { this.name = name; this.number = number; } var a = new contact("David", 12345); var b = new contact("Amy", 987654321) a.print(); b.print();
16th Mar 2021, 6:51 PM
Shubham Tiwari
Shubham Tiwari - avatar