Complete the code to create a new sticky note in FigJam.
figma.currentPage.appendChild(figma.create[1]())Use StickyNote to add a sticky note in FigJam.
Complete the code to set the text content of a sticky note.
const note = figma.createStickyNote(); note.[1] = 'Brainstorm ideas here';
The characters property sets the text inside a sticky note.
Fix the error in the code to add a sticky note to the current page.
const sticky = figma.createStickyNote(); figma.currentPage.[1](sticky);The correct method to add a node to the page is appendChild.
Fill both blanks to create a sticky note and set its color.
const note = figma.[1](); note.[2] = {type: 'SOLID', color: {r: 1, g: 0.92, b: 0.23}};
Create a sticky note with createStickyNote() and set its color using the backgroundColor property.
Fill all three blanks to create a sticky note, set its text, and add it to the page.
const note = figma.[1](); note.[2] = 'Ideas'; figma.currentPage.[3](note);
Create a sticky note with createStickyNote(), set its text with characters, and add it to the page with appendChild.
