-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
87 lines (70 loc) · 1.75 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
let contactData = [{
contactName: "John Doe",
contactNumber: 37246,
},
{
contactName: "Mark",
contactNumber: 37249876,
},
];
function addData(){
let newContactName=document.getElementById('contactName').value;
let newContactNumber=document.getElementById('contactNumber').value;
if(newContactName.length != 0 && newContactNumber.length != 0){
let newValue={
contactName: newContactName,
contactNumber: newContactNumber,
};
contactData.unshift(newValue);
resetForm();
showData();
}
else{
alert("please enter inputs");
}
}
function clearAllData(){
resetForm();
contactData=[];
showData();
}
function resetForm(){
document.getElementById('contactName').value="";
document.getElementById('contactNumber').value="";
}
function showData(){
document.getElementById('table-body').innerHTML = '';
// `<tr>
// <td>ldfskjdalk</td>
// <td>98742098</td>
// </tr>`;
if(contactData.length !=0){
let i=0;
contactData.forEach((data) => {
document.getElementById('table-body').innerHTML +=
`
<tr>
<td>${data.contactName}</td>
<td>${data.contactNumber}</td>
<td>
<button onClick="deleteData(${i})">Delete</button>
</td>
</tr>
`;
i++;
});
}
else{
document.getElementById('table-body').innerHTML=
`
<tr>
<td colspan="2">no history found</td>
</tr>`
}
}
function deleteData(index){
contactData.splice(index,1);
showData();
}
showData();
//what is local storage and how to use it