Underscore.JS uniqueId 方法

Underscore.JS uniqueId 方法

语法

_.uniqueId([prefix])

uniqueId方法会生成一个唯一的id,如其名所示。如果传递了前缀,那么前缀将会附加到该id上。请看下面的示例:

示例

var _ = require('underscore');

// Example 1
var uniqueId1 = _.uniqueId("text");
// Example 2
var uniqueId2 = _.uniqueId("text");

console.log(uniqueId1);
console.log(uniqueId2);

将上述程序保存在 tester.js 中。运行以下命令来执行该程序。

命令

>node tester.js

输出

1
4
9
16
25

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程