I am trying to make an js contact app program that has to save a Contact number and phone and I get this error “Unexpected identifier at line 61”.
I don’t know where seems to be the ending point, how can I solve this? Here is my code:
JavaScript
x
64
64
1
class Contact {
2
constructor(props) {
3
this.state = {items:this.props.contacts};
4
this.getContacts(); }
5
getContacts = () => {
6
fetch('http://dev.samples.com/getcontacts.php')
7
.then(rsp=>rsp.json())
8
.then(response =>{
9
this.setState({items:response.data});
10
console.log(response.data)
11
})
12
}
13
}
14
this.setState({items:response.data});
15
handleChange(e);
16
if(e.target.name == 'name'){
17
this.setState({currentContact : { name: e.target.value}})
18
}
19
if(e.target.name == 'email'){
20
this.setState({currentContact : { email: e.target.value}})
21
}
22
if(e.target.name == 'phone'){
23
this.setState({currentContact : { phone: e.target.value}})
24
}
25
if(e.target.name == 'notes'){
26
this.setState({currentContact: {notes: e.target.value}});
27
}
28
if(e.target.name == 'id'){
29
if(e.target.value != undefined || e.target.value != ''){
30
this.setState({currentContact : { id: e.target.value}});
31
console.log(e.target.value);
32
}
33
}
34
class Prop {
35
constructor(props){
36
this.state = {currentContact: this.props.currentContact};
37
this.currentContact = this.props.currentContact;
38
this.id = this.props.currentContact.id;
39
this.handleSubmit = this.handleSubmit.bind(this);
40
this.handleChange = this.handleChange.bind(this);
41
}
42
}
43
function save()
44
{
45
var x = button.SaveContact();
46
var y = document.open("contact app.html");
47
x.save(contact.txt);
48
button.Save.appendChild(1);
49
}
50
var Name='Stefan',
51
Phone="078345678"
52
function doSaveAs(){
53
if (document.execCommand){
54
document.execCommand("SaveAs")
55
}
56
else {
57
alert("Save-feature available only in Internet 5.x.")
58
}
59
}
60
function doSaveAs(button)
61
let g="Elton"
62
let p = "0767554433"
63
function save(g,p);
64
Also I get this error too when I try to save the contact
JavaScript
1
4
1
:"contact app.html?id={this.id}%2F&name=Stefan&phone=0785678901:31 Uncaught ReferenceError: doSave is not defined
2
?
3
at HTMLInputElement.onclick (contact app.html?id={this.id}%2F&name=Stefan&phone=0785678901:31)"?
4
Advertisement
Answer
Not really much of a JavaScript developer, but I think you need to review function definitions and how to call them. Reason being it looks as though you started to define doSaveAs as a new function then continued on to other code. Was probably expecting a code block following that. Beyond that, I don’t know the scope of what you’re trying to accomplish.