a module for working with comments in cells
// adding a comment into the cell B3 of Sheet1
$$("ssheet").comments.add(3, 2, "text", "Sheet1");
The comments module has three self-explanatory methods: add, get and remove.
// getting a comment for the cell B3 of Sheet1
$$("ssheet").comments.get(3, 2, "Sheet1");
// removing a comment from the cell B3 of Sheet1
$$("ssheet").comments.remove(3, 2, "Sheet1");