skip to Main Content

Javascript – send message every "x" seconds

I would like to send messages every 5 seconds on differents numbers with this code: const send_message = ["34123456789","34123456789","34123456789"]; client.on("ready", () => { console.log("Client is ready!"); send_message.map((value) => { const chatId = value + "@c.us"; const message = 'This is…

VIEW QUESTION

Can I solve a Basic MongoDB Updating query using Node JS?

Here's the document of mongodb: { _id: new ObjectId("646fa9b33e467de3f38b2418"), price: 3500, orderConfirmation: false, dateConfirmationOrder: null, dateDelivered: null, clothID: '6450c20d7fd78c92313cd348', clientName: 'irtaza', clientNumber: 3320523524, desc: '11', address: 'Ahsan road, kala gujran, jhelum', marketerPayment: 200, marketerPaymentStatus: false, quantity: 1, deliveryStatus: false, marketerid:…

VIEW QUESTION
Back To Top
Search