Lodash教程

Lodash uniqueId method

语法

_.uniqueId([prefix=''])
Generates a unique ID. If prefix is given, the ID is appended to it.

参数

[prefix=''] (string) − The value to prefix the ID with.

输出

(string) − Returns the unique ID.

实例

var _ = require('lodash');
console.log(_.uniqueId('id_'));
console.log(_.uniqueId());
Save the above program in tester.js. Run the following command to execute this program.

Command

\>node tester.js

输出

id_1
2
昵称: 邮箱:
Copyright © 2022 立地货 All Rights Reserved.
备案号:京ICP备14037608号-4