Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit f46c7a2

Browse files
added a unique random string generator
1 parent bc48cd4 commit f46c7a2

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

‎README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,5 @@
2929
| Problem - 25 | [Plus One - 66.LeetCode - Easy](https://github.com/MehedilslamRipon/Problem-solving-with-JavaScript/blob/master/problem-25.js) |
3030
| Problem - 26 | [Linear Search implementation with JS](https://github.com/MehedilslamRipon/Problem-solving-with-JavaScript/blob/master/problem-26.js) |
3131
| Problem - 27 | [Binary Search implementation with JS](https://github.com/MehedilslamRipon/Problem-solving-with-JavaScript/blob/master/problem-27.js) |
32+
| Problem - 28 | [Make a unique random string generator - uuid alternative lite] (https://github.com/MehedilslamRipon/Problem-solving-with-JavaScript/blob/master/problem-28.js) |
3233
<!-- | Problem - 22 | | -->

‎problem-28.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// UUID alternative lite
2+
const uuid = (Math.random() + 1).toString(36).substring(2);
3+
4+
console.log(uuid);

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /