コメント
式にはコメントを挿入できます。
コメントの2つのタイプを使用できます:
- 単一行のコメント: コメントは//で始まり、新しい行で終わります。
date = toDate('2021-04-08') //using function to cast string as date
- 複数行のコメント: コメントは/*で始まり、*/で終わります。
/* this the first line in the comment this is another line in the same comment and this is the last line of the comment */