Skip to main content
Close announcements banner

Comments

Comments can be inserted in expressions.

You can use two types of comments:
  • Single-line comments: the comment starts with // and ends with a new line.
    date = toDate('2021-04-08') //using function to cast string as date
  • Multiple-lines comments: the comment starts with /* and ends with */.
    /* this the first line in the comment
    this is another line in the same comment
    and this is the last line of the comment */

Did this page help you?

If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!