Generates a new id that starts with the specified prefix.
Namespace: MindFusion.Common
File: IdGenerator.js
SyntaxJavaScript
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.
ExampleThis code generates a random id starting with the prefix "APP".
JavaScript
Copy Code
|
|---|
| var id = IdGenerator.generate('APP'); |
See Also