Complete the code to set letter spacing to 2 pixels in Figma.
textNode.letterSpacing = [1]Letter spacing in Figma is set as a number representing pixels, so 2 means 2 pixels.
Complete the code to set paragraph spacing to 10 pixels in Figma.
textNode.paragraphSpacing = [1]Paragraph spacing is set as a number representing pixels, so 10 means 10 pixels.
Fix the error in setting letter spacing to 5 pixels (number expected, not string).
textNode.letterSpacing = [1]Letter spacing must be a number, so 5 without quotes is correct.
Fill both blanks to set letter spacing to 3 and paragraph spacing to 12 pixels.
textNode.letterSpacing = [1] textNode.paragraphSpacing = [2]
Both letterSpacing and paragraphSpacing expect numbers representing pixels.
Fill all three blanks to set letter spacing to 1, paragraph spacing to 8, and then increase letter spacing by 2.
textNode.letterSpacing = [1] textNode.paragraphSpacing = [2] textNode.letterSpacing += [3]
Use numbers for spacing. Increase letter spacing by adding 2 as a number.