Complete the code to set the horizontal text alignment to center in Figma.
textNode.textAlign = [1]Setting textAlign to "center" aligns the text horizontally to the center.
Complete the code to set the vertical text alignment to middle in Figma.
textNode.verticalAlign = [1]Setting verticalAlign to "middle" aligns the text vertically in the middle.
Fix the error in the code to correctly set horizontal alignment to right.
textNode.textAlign = [1]The alignment value must be a string with double quotes, like "right".
Fill both blanks to set horizontal alignment to left and vertical alignment to bottom.
textNode.textAlign = [1] textNode.verticalAlign = [2]
Use "left" for horizontal left alignment and "bottom" for vertical bottom alignment.
Fill all three blanks to set horizontal alignment to justify, vertical alignment to top, and assign the text content.
textNode.textAlign = [1] textNode.verticalAlign = [2] textNode.characters = [3]
Set textAlign to "justify" for justified text, verticalAlign to "top" for top vertical alignment, and assign the string "Hello, world!" to characters to set the text content.