Guest User

Untitled

a guest
Jul 20th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <script>
  2.  
  3. var dateString = "Son Güncelleme: ";
  4.  
  5. var newDate = new Date();
  6.  
  7. // Get the month, day, and year.
  8. dateString += newDate.getDate() + "/";
  9. dateString += (newDate.getMonth() + 1) + "/";
  10. dateString += newDate.getFullYear();
  11.  
  12. document.write(dateString);
  13. </script>
Add Comment
Please, Sign In to add comment