> For the complete documentation index, see [llms.txt](https://doc.tanmer.cn/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doc.tanmer.cn/javascript.md).

# Javascript

## 使用技巧

### 生成随机字符串

```javascript
Math.random().toString(32).substring(2)
```
