|
803 | 803 | "title": "Random string",
|
804 | 804 | "description": "Generates a random string of characters of a certain length",
|
805 | 805 | "code": [
|
806 | | - "function makeid(length) {", |
807 | | - " const characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';", |
| 806 | + "function makeid(length, characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789') {", |
808 | 807 | " return Array.from({ length }, () => characters.charAt(Math.floor(Math.random() * characters.length))).join('');",
|
809 | 808 | "}",
|
810 | 809 | "",
|
811 | | - "console.log(makeid(5));" |
| 810 | + "console.log(makeid(5), \"1234\" /* (optional) */);" |
812 | 811 | ],
|
813 | 812 | "tags": ["javascript", "function", "random"],
|
814 | 813 | "author": "kruimol"
|
|
0 commit comments