Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
var idValues = myTable.Rows().map(function () {
    return this.Id;
});

Examples

...

Code Block
languagejs
var rows = myTable.Rows();

...

Code Block
languagejs
var idValues = myTable.Rows().map(function () {
    return this.Id;
});