/ LJCJSCodeDoc / LJCDBAccessLib / LJCDataColumns / Remove


Parameters
propertyName - The item PropertyName value.

Returns

The item with matching values.

Syntax

JavaScript
Remove(propertyName)

Removes the the object which matches the data values.

Example

JavaScript
// Removes the object which matches the data values.
Remove()
{
  const columns = new LJCDataColumns();
  let column = columns.Add("Name");
  column = columns.Add("Sequence");

  columns.Remove("Name");
  column = columns.Retrieve("Name");
  let result = "Found";
  if (null == column)
  {
    result = "";
  }

  // result:
  // 
}

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