Get a French date


/ Published in: JavaScript
Save to your folder(s)



Copy this code and paste it in your HTML
  1. /*
  2.  * How to use
  3.  *
  4.  * date = new Date();
  5.  * alert(date.getFrenchDay());
  6.  * alert(date.getFrenchMonth());
  7.  */
  8.  
  9. Date.prototype.getFrenchDay = function()
  10. {
  11. var days = [
  12. 'lundi',
  13. 'mardi',
  14. 'mercredi',
  15. 'jeudi',
  16. 'vendredi',
  17. 'samedi',
  18. 'dimanche',
  19. ];
  20.  
  21. return days[this.getDay()];
  22. }
  23.  
  24. Date.prototype.getFrenchMonth = function()
  25. {
  26. var months = [
  27. 'janvier',
  28. 'février',
  29. 'mars',
  30. 'avril',
  31. 'mai',
  32. 'juin',
  33. 'juillet',
  34. 'aout',
  35. 'septembre',
  36. 'octobre',
  37. 'novembre',
  38. 'décembre',
  39. ];
  40.  
  41. return months[this.getMonth()];
  42. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.