Skip to content

Instantly share code, notes, and snippets.

@buster95
Created June 18, 2023 17:07
Show Gist options
  • Save buster95/c4f9893f024a7b865ea3e017514564ea to your computer and use it in GitHub Desktop.
Save buster95/c4f9893f024a7b865ea3e017514564ea to your computer and use it in GitHub Desktop.
javascript functions
var mongoObjectId = function () {
var timestamp = (new Date().getTime() / 1000 | 0).toString(16);
return timestamp + 'xxxxxxxxxxxxxxxx'.replace(/[x]/g, function () {
return (Math.random() * 16 | 0).toString(16);
}).toLowerCase();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment