✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
A student runs the following code and gets ReferenceError: Can't find variable: dotSize. Which option correctly fixes the error?
function setup() { createCanvas(300, 300);}
function draw() { background(220); ellipse(150, 150, dotSize, dotSize);}