Skip to content

Instantly share code, notes, and snippets.

@Harrisonkamau
Created November 30, 2020 09:28
Show Gist options
  • Save Harrisonkamau/9089cf8d578b9ca29539548d2bc5ecf4 to your computer and use it in GitHub Desktop.
Save Harrisonkamau/9089cf8d578b9ca29539548d2bc5ecf4 to your computer and use it in GitHub Desktop.
Only render HH:MM AM/PM timestamp using JS
const date = new Date();
date.toLocaleTimeString([], { hour: '2-digit', minute: '2-digit' }); // E.g. 12:30 PM
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment