Complete the code to set the font size to 16 pixels in Figma.
textNode.fontSize = [1]The fontSize property in Figma expects a number representing pixels, so 16 is correct.
Complete the code to set the line height to 24 pixels in Figma.
textNode.lineHeight = [1]Line height in Figma is set as a number representing pixels, so 24 is correct.
Fix the error in the code to correctly set font size to 18 pixels.
textNode.fontSize = [1]Font size must be a number without quotes or units in Figma.
Fill both blanks to set font size to 20 and line height to 28 pixels.
textNode.fontSize = [1] textNode.lineHeight = [2]
Both fontSize and lineHeight expect numbers without quotes or units.
Fill all three blanks to set font size to 14, line height to 21, and assign the font family 'Roboto'.
textNode.fontSize = [1] textNode.lineHeight = [2] textNode.fontName = [3]
fontSize and lineHeight are numbers. fontName requires an object with family and style.
