Generates a new id that starts with the specified prefix.
Namespace: MindFusion.Common
File: IdGenerator.js
JavaScript Copy Code |
---|
function generate (prefix) |
Type: String
String. A prefix to insert at the beginning of the identifier.
Type: String
String. A string containing the generated identifier.
This code generates a random id starting with the prefix "APP".
JavaScript Copy Code |
---|
var id = IdGenerator.generate('APP'); |