निम्नलिखित फ़ंक्शन डेटा जोड़ने के लिए IndexedDB का एक उदाहरण है:
फ़ंक्शन ऐड() { var request =db.transaction(["employee"], "readwrite") .objectStore("employee") .add({ id:"001", name:"Amit", उम्र:28, ईमेल:"[email protected]" }); request.onuccess =function(event) {अलर्ट ("अमित को आपके डेटाबेस में जोड़ दिया गया है।"); }; request.onerror =function(event) { अलर्ट ("डेटा जोड़ने में असमर्थ\r\nAmit आपके डेटाबेस में पहले से मौजूद है!"); }}पूर्व>ऊपर, हमने डेटाबेस में निम्नलिखित विवरण जोड़े:
const EmployeeData =[ { id:"001", नाम:"अमित", उम्र:28, ईमेल:"[email protected]" },];