/ LJCJSCodeDoc / LJCDBAccessLib / LJCJoin / Clone


Returns

The new cloned object.

Syntax

JavaScript
Clone()

Creates an object clone.

Example

JavaScript
// Creates a clone of this object.
Clone()
{
  const tableName = "TableName";
  const tableAlias = "t";
  const join = new LJCJoin(tableName, tableAlias);

  let clone = join.Clone();
  const result = clone.TableName;

  // result:
  // TableName
}

Copyright © Lester J. Clark and Contributors.
Licensed under the MIT License.