हम toISOString() फ़ंक्शन की सहायता से JS दिनांक समय को MySQL डेटाटाइम में बदल सकते हैं।
आइए जावास्क्रिप्ट का एक उदाहरण देखें।
उदाहरण
<!DOCTYPE html> <html> <head> <title>Web Page Design</title> <script> document.writeln(new Date().toISOString().slice(0, 19).replace('T', ' ')); </script> </head> <body> <br>Current Date is displayed above... </body> </html>
आउटपुट
निम्न आउटपुट है।
2018-11-23 11:14:38 Current Date is displayed above...