Skip to content

Instantly share code, notes, and snippets.

View dolphin2410's full-sized avatar
I Feel Amylase

dolphin2410 dolphin2410

I Feel Amylase
View GitHub Profile
@bynaki
bynaki / generate-id.md
Last active February 13, 2024 06:10
JavaScript :: 유일한 ID 만들기.

JavaScript :: 유일한 ID 만들기.

var newID = function () {
  return Math.random().toString(36).substr(2, 16);
}
console.log(newID());