Versions Compared

Key

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

...

Excerpt

Gets all the comment IDs that are already entered on a page.

Parameters

Parameter name

Type

Required

Description

page ID

numberyesID of the selected page.

Return type

number []

IDs of the comments on the page.

...

Examples

Example 1

Code Block
number [] allComm = getAllCommentIds(11801);

print("Page has " + size(allComm) + " comments";

...